@extends('layouts.app') @section('title', 'Savings Accounts') @section('content')
Total Accounts
Total Balance
Active Accounts
Total Transactions
| ACCOUNT NO. | CLIENT | PRODUCT | TYPE | BALANCE | INTEREST RATE | STATUS | CREATED | ACTIONS |
|---|---|---|---|---|---|---|---|---|
| {{ $account->account_number }} |
@if ($account->client)
{{ $account->client->full_name }}
{{ $account->client->client_number }}
@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 foundNo savings accounts match your criteria. |
||||||||