| {{ _lang('Trans Date') }} | {{ date("d M, Y",strtotime($transaction->trans_date)) }} |
| {{ _lang('Account') }} | {{ $transaction->account->account_title }} |
| {{ _lang('Category') }} | {{ isset($transaction->expense_type->name) ? $transaction->expense_type->name : _lang('Transfer') }} |
| {{ _lang('Amount') }} | {{ decimalPlace($transaction->amount, currency($transaction->account->account_currency), $company_currency[$transaction->company_id]) }} |
| {{ _lang('Base Amount') }} | {{ decimalPlace($transaction->amount, currency($company_currency[$transaction->company_id]), $company_currency[$transaction->company_id]) }} |
| {{ _lang('Payment Method') }} | {{ $transaction->payment_method->name }} |
| {{ _lang('Reference') }} | {{ $transaction->reference }} |
| {{ _lang('Attachment') }} |
@if($transaction->attachment != "")
{{ _lang('View Attachment') }}
@else
@endif
|
| {{ _lang('Note') }} | {{ $transaction->note }} |