HEAD
Period: {{ $label ?? '-' }}
Opening Balance: UGX {{ number_format($openingBalance ?? 0, 0) }}
Closing Balance: UGX {{ number_format($closingBalance ?? 0, 0) }}
| Date | Description | Reference | Debit | Credit | Closing Balance |
|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($tx->entry->entry_date ?? $tx->created_at)->format('Y-m-d') }} | {{ $name ?? ($tx->memo ?? '-') }} | @if(!empty($voucherNo)) Voucher No. {{ $voucherNo }} @else - @endif | {{ $debit ? number_format($debit, 0) : '-' }} | {{ $credit ? number_format($credit, 0) : '-' }} | {{ number_format($runningBalance, 0) }} |
| Totals | UGX {{ number_format($totalDebits, 0) }} | UGX {{ number_format($totalCredits, 0) }} | UGX {{ number_format($runningBalance, 0) }} | ||
| Date | Description | Reference | Debit | Credit | Closing Balance |
|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($tx->entry->entry_date ?? $tx->created_at)->format('Y-m-d') }} | {{ $name ?? ($tx->memo ?? '-') }} | {{ ! empty($voucherNo) ? 'Voucher No. '.$voucherNo : '-' }} | {{ $debit ? number_format($debit, 0) : '-' }} | {{ $credit ? number_format($credit, 0) : '-' }} | {{ number_format($runningBalance, 0) }} |
| Totals | UGX {{ number_format($totalDebits, 0) }} | UGX {{ number_format($totalCredits, 0) }} | UGX {{ number_format($runningBalance, 0) }} | ||