@extends('layouts.app') @section('title', 'Wallet Transactions') @section('content')
| Description | Type | Amount | Balance After | Date |
|---|---|---|---|---|
| {{ $tx->description }} | {{ ucfirst($tx->type) }} | {{ $tx->type === 'credit' ? '+' : '-' }}₦{{ number_format($tx->amount, 2) }} | ₦{{ number_format($tx->balance_after, 2) }} | {{ $tx->created_at->format('M d, Y H:i') }} |
| No transactions yet. | ||||