@extends('layouts.app') @section('content')
| Date | Type | Remarks | Amount | Balance After |
|---|---|---|---|---|
| {{ $txn->created_at->format('d M Y H:i') }} | {{ ucfirst($txn->type) }} | {{ ucfirst($txn->reference_id) }} | {{ $txn->type === 'deposit' ? '+' : '-' }}{{ number_format($txn->amount, 3) }} | {{ number_format($txn->balance_after, 3) }} |