{{-- Header --}}
Wallet Manage your balance and transactions
Withdraw
{{-- Balance Card --}}
Available Balance ${{ number_format($balance, 2) }}
{{-- Quick Stats --}}
Total Deposited $0.00 Total Withdrawn $0.00 Pending Withdrawals $0.00
{{-- Filter --}} {{-- Transactions --}} @if($transactions->isEmpty()) {{-- Empty State --}}
No transactions yet Your wallet transactions will appear here
@else {{-- Transactions List --}}
@foreach($transactions as $transaction)
@if($transaction->type === 'credit') @else @endif
{{ $transaction->description }}
{{ $transaction->created_at->format('M d, Y h:i A') }}
{{ $transaction->type === 'credit' ? '+' : '-' }}${{ number_format($transaction->amount, 2) }}
@if($transaction->status)
@if($transaction->status === 'completed') Completed @elseif($transaction->status === 'pending') Pending @elseif($transaction->status === 'failed') Failed @endif
@endif
@endforeach
{{-- Pagination --}}
{{ $transactions->links() }}
@endif
{{-- Withdrawal Modal --}} @if($showWithdrawalModal)
Withdraw Funds
Available Balance: ${{ number_format($balance, 2) }} @error('withdrawalAmount') {{ $message }} @enderror
Note: Withdrawals are processed within 2-3 business days. A minimum withdrawal of $10 is required.
Cancel Request Withdrawal
@endif