Process and manage golfer withdrawal requests
{{ session('withdrawal_approved') }}
{{ session('withdrawal_completed') }}
{{ session('withdrawal_rejected') }}
{{ session('withdrawal_batch_processed') }}
{{ session('withdrawal_error') }}
Pending
{{ $counts['pending'] }}
${{ number_format($totals['pending_amount'], 2) }}
Processing
{{ $counts['processing'] }}
${{ number_format($totals['processing_amount'], 2) }}
Completed
{{ $counts['completed'] }}
${{ number_format($totals['completed_amount'], 2) }}
Failed
{{ $counts['failed'] }}
Cancelled
{{ $counts['cancelled'] }}
Total
{{ $counts['total'] }}
| ID | Golfer | Amount | Status | Requested | Actions |
|---|---|---|---|---|---|
| #{{ $withdrawal->id }} |
{{ $withdrawal->golfer->name }}
{{ $withdrawal->golfer->email }}
|
{{ $withdrawal->formatted_amount }}
Net: {{ $withdrawal->formatted_net_amount }}
|
{{ $withdrawal->status_label }} |
{{ $withdrawal->created_at->format('M d, Y') }}
{{ $withdrawal->created_at->format('g:i A') }}
|
View
@if($withdrawal->status === 'pending')
@endif
|
|
No withdrawals found Try adjusting your filters or search criteria. |
|||||