@extends('admin.layouts.app') @section('title', 'Withdrawals — ExtraCash Admin') @section('page-title', 'Withdrawals') @section('breadcrumb', 'Manage withdrawal requests') @section('content')
{{ $withdrawals->total() }} requests
@forelse($withdrawals as $w) @empty @endforelse
User Amount Method Status Requested Actions

{{ $w->user?->name ?? '—' }}

{{ $w->user?->email ?? '' }}

ZMW {{ number_format($w->amount, 2) }} {{ $w->method ?? 'Mobile Money' }} {{ $w->status?->value ?? '—' }} {{ $w->created_at->format('M d, Y') }} @if(in_array($w->status?->value, ['Requested','UnderReview']))
@csrf
@csrf
@else {{ $w->status?->value }} @endif
No withdrawals found
@if($withdrawals->hasPages())
{{ $withdrawals->withQueryString()->links() }}
@endif
@endsection