| # | Account Holder | Account Name | Account Number | Opening Balance | Current Balance | Created By | Actions |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $account->account_holder_name }} | {{ $account->chartAccount->name ?? 'N/A' }} | {{ $account->account_number }} | {{ number_format($account->opening_balance, 2) }} | {{ number_format($account->current_balance, 2) }} | {{ $account->creator->username ?? 'N/A' }} |
|
| No accounts found. | |||||||
| Totals: | {{ number_format($shareholderAccounts->sum('opening_balance'), 2) }} | {{ number_format($shareholderAccounts->sum('current_balance'), 2) }} | |||||