@yield('header_styles')

{{ Session::get('company') }}

{{ $voucherhead }}


Date From: 01-01-1970   To: 05-08-2026

@if(count($reports) > 0) @php $gtotal = 0; $si = 1; @endphp @foreach($reports as $monthKey => $rows) @php $total = 0; $displayMonthDate = null; @endphp @foreach($rows as $row) @php $total += $row->amount; $gtotal += $row->amount; $displayMonthDate = isset($row->cheque_date) && $row->cheque_date ? $row->cheque_date : ( isset($row->voucher_date) ? $row->voucher_date : $displayMonthDate ); @endphp @endforeach @endforeach
Si.No Party Name Cheque No. Bank Cheque Date Amount
{{ $si++ }} {{ $row->customer }} {{ $row->cheque_no }} {{ $row->code }} {{ isset($row->cheque_date) && $row->cheque_date ? date('d-m-Y', strtotime($row->cheque_date)) : ( isset($row->voucher_date) ? date('d-m-Y', strtotime($row->voucher_date)) : '' ) }} {{ number_format($row->amount,2) }}
Total in {{ $displayMonthDate ? date('F Y', strtotime($displayMonthDate)) : $monthKey }}: {{ number_format($total,2) }}
Net Total: {{ number_format($gtotal,2) }}
@else No records were found. @endif
@if(count($reports) > 0)
@endif
@section('footer_scripts') @stop