@extends('member.layout') @section('title', 'Savings Account Details') @section('content')
| Date | Type | Amount | Status |
|---|---|---|---|
| {{ $transaction->created_at->format('M d, Y H:i') }} | @if($transaction->type === 'savings_deposit') Deposit @else Withdrawal @endif | {{ $transaction->type === 'savings_deposit' ? '+' : '-' }}KSh {{ number_format($transaction->amount, 2) }} | {{ ucfirst($transaction->status) }} |
Your transaction history will appear here