All Savings Accounts
Generated on {{ now()->format('F d, Y H:i') }}
| ACCOUNT NO. | CLIENT | PRODUCT | TYPE | BALANCE | INTEREST RATE | STATUS | CREATED |
|---|---|---|---|---|---|---|---|
| {{ $account->account_number }} |
@if ($account->client)
{{ $account->client->full_name ?? 'N/A' }}
{{ $account->client->client_number ?? 'N/A' }}
@else
Client Missing
@endif
|
{{ $account->product_name }} | {{ ucfirst($account->type) }} | USD {{ number_format($account->current_balance, 2) }} | {{ $account->interest_rate }}% | @if($account->status == 'active') Active @elseif($account->status == 'dormant') Dormant @elseif($account->status == 'closed') Closed @else Frozen @endif | {{ $account->created_at->format('M d, Y') }} |
| No savings accounts found. | |||||||