{{ $shop_infos->address ?? '' }}
| # | Date | Invoice No | Ledger Name | Sub-Ledger | Project | Receive (Dr) | Payment (Cr) |
|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ \Carbon\Carbon::parse($item->date)->format('d-m-Y') }} | {{ $item->invoice_no ?? '—' }} | {{ $item->contra_ledger_name ?? '—' }} | {{ $item->contra_subledger_name ?? '—' }} | {{ $item->project_name ?? '—' }} | {{ $item->dr_amount > 0 ? number_format($item->dr_amount, 2) : '—' }} | {{ $item->cr_amount > 0 ? number_format($item->cr_amount, 2) : '—' }} |
| No transactions found for this period. | |||||||
| Period Total | {{ number_format($total_debit, 2) }} | {{ number_format($total_credit, 2) }} | |||||
| Opening Balance : | {{ number_format($OpeningBank ?? 0, 2) }} | ||||||
| + Total Receive : | {{ number_format($total_debit, 2) }} | ||||||
| − Total Payment : | {{ number_format($total_credit, 2) }} | ||||||
| Closing Balance : | {{ number_format($ClosingBank ?? 0, 2) }} | ||||||