@extends('admin.layouts.app') @section('title', 'Wallets — ExtraCash Admin') @section('page-title', 'Wallets') @section('breadcrumb', 'All user wallets (platform-wide)') @section('content')
{{ $wallets->total() }} wallet(s)
@forelse($wallets as $wallet) @empty @endforelse
User Email Available Pending Currency Actions
{{ $wallet->user?->name ?? '—' }} {{ $wallet->user?->email ?? '—' }} ZMW {{ number_format($wallet->available_balance, 2) }} ZMW {{ number_format($wallet->pending_balance, 2) }} {{ $wallet->currency ?? 'ZMW' }} @if($wallet->user) View user → @endif
No wallets found
@if($wallets->hasPages())
{{ $wallets->withQueryString()->links() }}
@endif
@endsection