| Name: |
{{ $savingsProduct->name }} |
| Code: |
{{ $savingsProduct->code }} |
| Type: |
{{ ucfirst($savingsProduct->type) }} |
| Status: |
@if($savingsProduct->is_active)
Active
@else
Inactive
@endif
|
| Description: |
{{ $savingsProduct->description ?: 'N/A' }} |
| Interest Rate: |
{{ $savingsProduct->formatted_interest_rate }} |
| Interest Posting: |
{{ ucfirst($savingsProduct->interest_posting) }} |
| Min Opening Balance: |
{{ number_format($savingsProduct->minimum_opening_balance, 2) }} |
| Min Balance: |
{{ number_format($savingsProduct->minimum_balance, 2) }} |
| Max Balance: |
{{ $savingsProduct->maximum_balance ? number_format($savingsProduct->maximum_balance, 2) : 'Unlimited' }} |
Fees
| Opening Fee: |
{{ number_format($savingsProduct->opening_fee, 2) }} |
| Closing Fee: |
{{ number_format($savingsProduct->closing_fee, 2) }} |
| Monthly Fee: |
{{ number_format($savingsProduct->monthly_fee, 2) }} |
| Withdrawal Fee: |
{{ number_format($savingsProduct->withdrawal_fee, 2) }} |
Settings
| Allows Withdrawals: |
{{ $savingsProduct->allows_withdrawals ? 'Yes' : 'No' }} |
| Allows Deposits: |
{{ $savingsProduct->allows_deposits ? 'Yes' : 'No' }} |
| Requires Approval: |
{{ $savingsProduct->requires_approval ? 'Yes' : 'No' }} |
| Created By: |
{{ $savingsProduct->creator->name ?? 'N/A' }} |
| Created At: |
{{ $savingsProduct->created_at->format('d/m/Y H:i') }} |
@if($savingsProduct->savingsAccounts->count() > 0)
Associated Savings Accounts ({{ $savingsProduct->savingsAccounts->count() }})
| Account Number |
Client |
Balance |
Status |
Created |
@foreach($savingsProduct->savingsAccounts as $account)
| {{ $account->account_number }} |
{{ $account->client->name }} |
{{ number_format($account->current_balance, 2) }} |
{{ ucfirst($account->status) }}
|
{{ $account->created_at->format('d/m/Y') }} |
@endforeach
@endif