@extends('layouts.app') @section('title','My Savings') @section('page-title','My Savings') @section('content')
| Date | Type | Mode | Amount | Balance After | Note |
|---|---|---|---|---|---|
| {{ $txn->created_at->format('M d, Y') }} | {{ ucfirst($txn->type) }} | {{ ucfirst(str_replace('_',' ',$txn->payment_mode)) }} | {{ $txn->type==='deposit'?'+':'-' }}${{ number_format($txn->amount,2) }} | ${{ number_format($txn->balance_after,2) }} | {{ $txn->note ?? '—' }} |
| No savings transactions yet | |||||