@php $currency = currency() @endphp
@php $date_format = get_company_option('date_format','Y-m-d'); @endphp
| {{ _lang('Date') }} |
{{ _lang('Account') }} |
{{ _lang('Expense Type') }} |
{{ _lang('Amount') }} |
{{ _lang('Payment Method') }} |
{{ _lang('Reference') }} |
{{ _lang('Note') }} |
@foreach($transactions as $transaction)
| {{ date($date_format, strtotime($transaction->trans_date)) }} |
{{ $transaction->account->account_title }} |
{{ $transaction->expense_type->name }} |
{{ $transaction->account->account_currency.' ('.currency($transaction->account->account_currency).') '.decimalPlace($transaction->amount) }} |
{{ $transaction->payment_method->name }} |
{{ $transaction->reference }} |
{{ $transaction->note }} |
@endforeach