@extends('layouts.app') @section('title', 'Wallet') @section('content')
Manage your wallet balance and transactions.
Available Balance
₦{{ number_format($wallet->balance, 2) }}
Total Funded
₦{{ number_format($wallet->total_funded, 2) }}
Total Spent
₦{{ number_format($wallet->total_spent, 2) }}
| 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. | ||||