@extends('adminlte::page') @section('title', 'Savings Management') @section('content')
| ID | Member | Initial | Balance | Type | Status | Maturity | Created | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $saving->id }} |
{{ Str::limit($saving->user->full_name ?? 'N/A', 18) }}
|
KSh {{ number_format($saving->amount, 0) }} |
KSh {{ number_format($saving->current_balance, 0) }}
@if($saving->current_balance != $saving->amount && $saving->status !== 'withdrawn')
{{ $saving->current_balance > $saving->amount ? '+' : '' }}{{ number_format($saving->current_balance - $saving->amount, 0) }} @endif |
{{ $saving->type_label }} | {{ $saving->status_label }} | {{ $saving->maturity_date ? $saving->maturity_date->format('d M Y') : 'N/A' }} | {{ $saving->created_at->format('d M Y') }} | |
No Savings Accounts YetStart by adding your first savings account to the system. Add First Savings Account |
||||||||