Savings Account Details

Account Number: {{ $savingsAccount->account_number }}

Generated on {{ now()->format('F d, Y H:i') }}

Client Name:
{{ $savingsAccount->client->full_name }}
Client Number:
{{ $savingsAccount->client->client_number }}
Product Name:
{{ $savingsAccount->product_name }}
Account Type:
{{ ucfirst($savingsAccount->type) }}
Opening Date:
{{ $savingsAccount->opening_date->format('M d, Y') }}
Status:
{{ ucfirst($savingsAccount->status) }}
Interest Rate:
{{ $savingsAccount->interest_rate }}%
Minimum Balance:
USD {{ number_format($savingsAccount->minimum_balance, 2) }}
USD {{ number_format($stats['available_balance'], 2) }}
Available Balance
USD {{ number_format($stats['total_deposits'], 2) }}
Total Deposits
USD {{ number_format($stats['total_withdrawals'], 2) }}
Total Withdrawals
USD {{ number_format($stats['interest_earned'], 2) }}
Interest Earned

Recent Transactions

@forelse($savingsAccount->transactions as $transaction) @empty @endforelse
Date Transaction # Type Description Amount Balance After
{{ $transaction->transaction_date->format('M d, Y') }} {{ $transaction->transaction_number }} {{ ucfirst($transaction->type) }} {{ $transaction->description }} {{ $transaction->type == 'withdrawal' ? '-' : '+' }}USD {{ number_format($transaction->amount, 2) }} USD {{ number_format($transaction->balance_after, 2) }}
No transactions found.