@extends('layouts.app') @section('title', 'Wallet Management') @section('description', 'Manage all user wallets') @section('content')

Wallet Management

View and manage all user wallets

@forelse($wallets as $wallet) @empty @endforelse
User Balance Status Verification Created Actions
{{ $wallet->client->name ?? 'N/A' }}
{{ $wallet->client->email ?? 'N/A' }}
{{ $wallet->getFormattedBalance() }}
{{ $wallet->currency }}
@if($wallet->status === 'active') Active @elseif($wallet->status === 'frozen') Frozen @else {{ ucfirst($wallet->status) }} @endif @if($wallet->is_verified) Verified @else Unverified @endif {{ $wallet->created_at->format('M d, Y') }} View

No wallets found

@if($wallets->hasPages())
{{ $wallets->links() }}
@endif
@endsection