@extends('layouts.admin', ['heading' => 'Withdrawals', 'subheading' => 'Approve, reject, and payout control']) @section('content')
Export Excel Export PDF
@csrf
@forelse($withdrawals as $withdrawal) @empty @endforelse
Request Member Amount Net Status Actions
{{ $withdrawal->request_number }}
{{ optional($withdrawal->requested_at)->format('Y-m-d H:i') }}
{{ $withdrawal->user?->member_code ?? 'N/A' }}
{{ $withdrawal->user?->name ?? '' }}
{{ number_format((float) $withdrawal->amount, 2) }} {{ number_format((float) $withdrawal->net_amount, 2) }} {{ $withdrawal->status }}
@csrf
@csrf
@csrf
@csrf
No withdrawals found.
{{ $withdrawals->links() }}
@endsection