@extends('layouts.app') @section('title', 'Wallet Management') @section('description', 'Manage all user wallets') @section('content')
View and manage all user wallets
| 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 |
|||||