Wallet balance

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

Fund wallet

Quick actions

@foreach ([ ['label' => 'Buy Airtime', 'route' => 'user.airtime'], ['label' => 'Buy Data', 'route' => 'user.data'], ['label' => 'Pay Electricity', 'route' => 'user.electricity'], ['label' => 'Pay Cable', 'route' => 'user.cable'], ] as $action) {{ $action['label'] }} @endforeach

Recent transactions

View all
@forelse ($recentTransactions as $transaction)

{{ ucfirst($transaction->service_type) }} · {{ $transaction->phone_or_meter }}

{{ $transaction->created_at->diffForHumans() }}

₦{{ number_format($transaction->amount / 100, 2) }}

@empty

No transactions yet — your purchases will show up here.

@endforelse