ADMIN PANEL - WITHDRAW REQUESTS
Total: {{ $withdraws->total() }}
@if(session('success'))
{{ session('success') }}
@endif

Withdraw List

@forelse($withdraws as $w) @php $badgeClass = 'badge-pending'; if ($w->status === 'approved') $badgeClass = 'badge-approved'; elseif ($w->status === 'rejected') $badgeClass = 'badge-rejected'; @endphp @empty @endforelse
#ID User Phone Method Amount Status Requested At Actions
{{ $w->id }} {{ optional($w->user)->name }} {{ optional($w->user)->phone }} {{ strtoupper($w->method) }} ৳ {{ number_format($w->amount) }} {{ ucfirst($w->status) }} {{ $w->created_at->format('d M Y H:i') }} View @if($w->status === 'pending')
@csrf
@csrf
@endif
কোনো উইথড্র রিকুয়েস্ট নেই।