@extends('member.layout') @section('title', 'My Savings') @section('content')

My Savings Accounts

Savings Management
Savings Summary
My Savings Accounts
@if($savings->count() > 0)
@foreach($savings as $saving)
{{ $saving->type }} Account
Account #{{ $saving->id }}
{{ ucfirst($saving->status) }}
Current Balance
KSh {{ number_format($saving->amount, 2) }}
@if($saving->type === 'fixed' && $saving->maturity_date)
Maturity Date
{{ $saving->maturity_date->format('M d, Y') }}
@endif
View @if($saving->status === 'active') @endif
@endforeach
{{ $savings->links() }}
@else
No Savings Accounts Yet

You haven't opened any savings accounts yet. Start saving with us!

Open Your First Account
@endif
@push('js') @endpush @endsection