@foreach ($items as $key => $item) @endforeach
@lang('SL') @lang('Date') @lang('Type') @lang('Account') @lang('Voucher No') @lang('Remark') @lang('Amount') @lang('Actions')
{{ ($items->currentpage() - 1) * $items->perpage() + $key + 1 }} {{ dateformat($item->date) }} {{ $item->type_name }} @if ($item->account) @if ($item->account->gateway_type == 'Mobile Bank') {{ $item->account->company_name }}
{{ $item->account->mobile_number }} @elseif ($item->account->gateway_type == 'Bank') {{ $item->account->bank_name }}
Acc: {{ $item->account->account_number }} @endif @else N/A @endif
{{ $item->vouche_no }} {{ $item->remark }} {{ number_format($item->amount, 2) }}
@if ($items instanceof \Illuminate\Pagination\LengthAwarePaginator) {{ $items->links('backend.layouts.paginate') }} @endif