| # | Account Type | Account Name | Account Number | Bank Name | Currency | From Date | To Date | Opening Balance | Closing Balance |
|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ ucfirst($account->account_type) }} | {{ $account->account_name }} | {{ $account->account_number }} | {{ $account->bank_name }} | {{ $account->currency }} | {{ optional($account->from_date)->format('Y-m-d') }} | {{ optional($account->to_date)->format('Y-m-d') }} | {{ number_format($account->opening_balance, 2) }} | {{ number_format($account->closing_balance, 2) }} |
| No accounts found for the given filters. | |||||||||
Generated on: {{ now()->format('Y-m-d H:i:s') }}