@extends('layouts.app') @section('title', 'Savings') @section('page-title', 'Savings Management') @section('content')
| Reference | Member | Type | Cur. | Amount (USD) | Amount (LRD) | Balance (USD) | Mode | Date | By |
|---|---|---|---|---|---|---|---|---|---|
{{ $txn->reference }} |
{{ strtoupper(substr($txn->member->name,0,2)) }}
{{ $txn->member->name }}
|
{{ ucfirst($txn->type) }} | {{ $txn->currency ?? 'USD' }} | {{ $txn->type==='deposit'?'+':'-' }}${{ number_format($txn->amount,2) }} | {{ $txn->type==='deposit'?'+':'-' }}L${{ number_format($txn->amount_lrd ?? $txn->amount * $rate,2) }} | ${{ number_format($txn->balance_after,2) }} | {{ ucfirst(str_replace('_',' ',$txn->payment_mode)) }} | {{ $txn->created_at->format('d M Y') }} | {{ $txn->recordedBy->name ?? 'System' }} |
| No transactions found | |||||||||