@extends('adminlte::page') @section('title', 'Money Market Accounts') @section('content_header')
| Account # | Member | Principal | Rate | Term | Interest | Total | Maturity | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|
|
{{ $account->account_number }}
|
{{ Str::limit($account->membership->user->full_name ?? 'N/A', 18) }}
{{ $account->membership->membership_number }}
|
{{ \App\Helpers\CurrencyHelper::format($account->principal_amount, $account->currency_code) }} | {{ number_format($account->interest_rate, 2) }}% | {{ $account->term_months }}m | {{ \App\Helpers\CurrencyHelper::format($account->interest_earned, $account->currency_code) }} | {{ \App\Helpers\CurrencyHelper::format($account->total_amount, $account->currency_code) }} | {{ $account->maturity_date->format('M d, Y') }} | {{ ucfirst($account->status) }} | |
No Money Market Accounts YetStart by adding your first money market account to the system. Add First Account |
|||||||||