Withdrawal Management

Process and manage golfer withdrawal requests

@if (session('withdrawal_approved')) @endif @if (session('withdrawal_completed')) @endif @if (session('withdrawal_rejected')) @endif @if (session('withdrawal_batch_processed')) @endif @if (session('withdrawal_error')) @endif

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'] }}

Reset
@forelse($withdrawals as $withdrawal) @empty @endforelse
ID Golfer Amount Status Requested Actions
#{{ $withdrawal->id }}
{{ $withdrawal->golfer->name }}
{{ $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')
@csrf
@endif

No withdrawals found

Try adjusting your filters or search criteria.

@if($withdrawals->hasPages())
{{ $withdrawals->links() }}
@endif