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

Wallet Overview

Available Balance

₦{{ number_format($wallet?->available_balance ?? 0, 2) }}

Total Balance

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

Locked Balance

₦{{ number_format($wallet?->locked_balance ?? 0, 2) }}

Daily Limit Remaining

₦{{ number_format($wallet?->remaining_daily_limit ?? 0, 2) }}

@if(!auth()->user()->hasCompletedKyc())

Complete KYC Verification

Verify your identity to unlock all features and increase your transaction limits.

Complete KYC
@endif

Recent Transactions

View All
@if($recentTransactions && $recentTransactions->count() > 0)
@foreach($recentTransactions as $transaction)

{{ $transaction->description }}

{{ $transaction->created_at->format('M d, Y H:i') }}

{{ $transaction->type === 'credit' ? '+' : '-' }}₦{{ number_format($transaction->amount, 2) }}

{{ $transaction->status }}

@endforeach
@else

No transactions yet

Fund your wallet to get started

@endif
@endsection