@include('accounting::admin.accounting._styles')
| Date | Voucher # | Type | Narration | Debit (₹) | Credit (₹) | Balance |
|---|---|---|---|---|---|---|
| Opening Balance | ₹ {{ number_format(abs($opening),2) }} {{ $opening >= 0 ? 'Dr' : 'Cr' }} | |||||
| {{ $entry->voucher->voucher_date->format('d M Y') }} | {{ $entry->voucher->voucher_number }} | {{ $entry->voucher->type_label }} | {{ $entry->narration ?: $entry->voucher->narration ?: '—' }} | {{ $d > 0 ? '₹ '.number_format($d,2) : '' }} | {{ $c > 0 ? '₹ '.number_format($c,2) : '' }} | ₹ {{ number_format(abs($runBal),2) }} {{ $runBal >= 0 ? 'Dr' : 'Cr' }} |
| No transactions found for this account in the selected period. | ||||||
| Closing Balance | ₹ {{ number_format($entries->sum('debit'),2) }} | ₹ {{ number_format($entries->sum('credit'),2) }} | ₹ {{ number_format(abs($runBal ?? $opening),2) }} {{ ($runBal ?? $opening) >= 0 ? 'Dr' : 'Cr' }} | |||
Select an account above to view its ledger.