| Total Expenses {{ $overview['total_expenses'] }} |
Total Amount {{ $currencySymbol }}{{ number_format($overview['total_amount'], 2) }} |
Cash {{ $currencySymbol }}{{ number_format($overview['cash_amount'], 2) }} |
Bank {{ $currencySymbol }}{{ number_format($overview['bank_amount'], 2) }} |
Mobile Banking {{ $currencySymbol }}{{ number_format($overview['mobile_amount'], 2) }} |
| Date | Expense No | Title | Category | Amount | Payment | Reference | Paid To | Status |
|---|---|---|---|---|---|---|---|---|
| {{ optional($expense->expense_date)->format('d M, Y') }} | {{ $expense->expense_no }} |
{{ $expense->title }}
@if($expense->note)
{{ $expense->note }} @endif |
{{ $expense->category?->name ?: 'Uncategorized' }} | {{ $currencySymbol }}{{ number_format((float) $expense->amount, 2) }} | {{ ucwords(str_replace('_', ' ', $expense->payment_method ?: '-')) }} | {{ $expense->reference_no ?: '-' }} | {{ $expense->paid_to ?: '-' }} | {{ $expense->status ? 'Active' : 'Inactive' }} |
| No expense found. | ||||||||