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

Wallet

Manage your wallet balance and transactions.

{{-- Balance Card --}}

Available Balance

₦{{ number_format($wallet->balance, 2) }}

Total Funded

₦{{ number_format($wallet->total_funded, 2) }}

Total Spent

₦{{ number_format($wallet->total_spent, 2) }}

{{-- Transactions --}}

Transaction 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() }}
{{-- Fund Modal --}} @endsection @push('scripts') @endpush