{{ Session::get('company') }}
{{ $voucherhead ?? 'PDC Issued Report' }}
| SI.# |
Cheque Date |
Cheque No. |
Bank |
Voucher No. |
Voucher Date |
Party Name |
Amount |
@foreach($reports as $key => $rows)
@foreach($rows as $row)
@if($row->cheque_no != '' && $row->code != '')
| {{ $i }} |
{{ date('d-m-Y', strtotime($row->cheque_date)) }} |
{{ $row->cheque_no }} |
{{ $row->code }} |
{{ $row->voucher_no }} |
{{ date('d-m-Y', strtotime($row->voucher_date)) }} |
{{ $row->supplier }} |
{{ number_format($row->amount, 2) }} |
@endif
@endforeach
|
Total {{ $monthName }} {{ $yearNum }}:
|
{{ number_format($mtotal, 2) }} |
@endforeach
| Net Total: |
{{ number_format($total, 2) }} |