@include('common.header')
| Report Name |
: Deposit Statement |
| Period |
: {{ $report_date }} |
| Sl. |
Received Date |
Cheque No. |
Cheque Date |
Payment Type |
Remarks |
Amount(BDT) |
@php
$total_amount = 0;
@endphp
@foreach ($fundDeposit 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->chq_no }} |
{{ Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $list->chq_date)->format('d-m-Y') }} |
{{ $list->payment_type }} |
{{ $list->remarks }} |
{{ number_format($list->amount, 2) }} |
@endforeach
| Total |
{{ number_format($total_amount, 2) }} |
|
@include('common.footer')