@include('common.header')
| Report Name |
: Transaction Ledger |
| Period |
: {{ $report_date }} |
| Sl. |
Withdraw Date |
Client Bank Name |
Bank Acc No |
Branch Name |
Routing No |
Debit A/C No |
Amount(BDT) |
@php
$total_amount = 0;
@endphp
@foreach ($fundWithdraw as $index => $list)
@php
$total_amount += $list->amount;
@endphp
| {{ ($index +1) }}
| {{ Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $list->business_date)->format('d-m-Y') }}
| {{ $list->bank_name }} |
{{ $list->bank_acc_no }} |
{{ $list->branch_name }} |
{{ $list->routing_no }} |
{{ $list->debit_ac_no }} |
{{ number_format($list->amount, 2) }} |
@endforeach
| Total |
{{ number_format($total_amount, 2) }} |
|
@include('common.footer')