@extends('layouts.app') @section('title', 'Wallet Transactions') @section('content')

Wallet Transactions

View all wallet credit and debit history.

@forelse($transactions as $tx) @empty @endforelse
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.
{{ $transactions->links() }}
@endsection