| Reference | Type | Amount | Balance After | Mode | Date |
|---|---|---|---|---|---|
| {{ $txn->reference }} | {{ ucfirst($txn->type) }} | {{ $txn->type==='deposit'?'+':'-' }}${{ number_format($txn->amount,2) }} | ${{ number_format($txn->balance_after,2) }} | {{ ucfirst(str_replace('_',' ',$txn->payment_mode)) }} | {{ $txn->created_at->format('M d, Y') }} |
| No savings transactions | |||||
| Loan # | Type | Principal | Outstanding | Term | Status |
|---|---|---|---|---|---|
| {{ $loan->loan_number }} | {{ ucfirst(str_replace('_',' ',$loan->loan_type)) }} | ${{ number_format($loan->amount,2) }} | ${{ number_format($loan->outstanding_balance,2) }} | {{ $loan->term_months }}mo @ {{ $loan->interest_rate }}% | {{ ucfirst($loan->status) }} |
| No loans | |||||