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