| Category | Net Amount | Tax ({{ setting('tax_rate', 18) }}%) | Total |
|---|---|---|---|
| {{ $item['label'] }} | {{ number_format($item['net']) }} | {{ number_format($item['tax']) }} | {{ number_format($item['total']) }} |
| TOTAL REVENUE | {{ number_format(collect($breakdown)->sum('net')) }} | {{ number_format(collect($breakdown)->sum('tax')) }} | {{ number_format($totalCharges) }} |
| Date/Time | Description | Charges | Payments | Balance |
|---|---|---|---|---|
| {{ $entry->transaction_date->format('d M H:i') }} | {{ $entry->description }} | {{ $entry->debit > 0 ? number_format($entry->debit) : '-' }} | {{ $entry->credit > 0 ? '(' . number_format($entry->credit) . ')' : '-' }} | {{ number_format($runningBalance) }} |
| SUBTOTAL | {{ number_format($totalCharges) }} | {{ number_format($totalPayments) }} | ||
| Included Tax (VAT {{ $vatRate }}%) | {{ number_format($taxAmount) }} | |||
| FINAL BALANCE DUE | {{ number_format($balance) }} | |||