@extends('layouts.user') @section('title', 'Transaction History') @section('content')
| Reference | Type | Amount | Balance After | Status | Date |
|---|---|---|---|---|---|
| {{ $txn->reference }} | {{ str_replace('_', ' ', $txn->type) }} | {{ number_format($txn->amount, 4) }} | {{ number_format($txn->balance_after, 4) }} | {{ $txn->status }} | {{ $txn->created_at->format('d M Y, H:i') }} |
| No transactions yet. | |||||