{{ __('Withdrawals') }}

@if (session('withdrawal_cancelled')) @endif @if (session('withdrawal_verification_error')) @endif

Available

${{ number_format($availableBalance, 2) }}

Total Earnings

${{ number_format($totalEarnings, 2) }}

Pending Earnings

${{ number_format($pendingBalance, 2) }}

Withdrawn

${{ number_format($totalWithdrawn, 2) }}

Processing

${{ number_format($pendingWithdrawals, 2) }}

@if ($golferProfile && $golferProfile->canRequestWithdrawal()) Request Withdrawal @else Setup Bank Account @endif Manage Bank Account
@if($earningsBreakdown->count() > 0)

Earnings Breakdown

Showing {{ $earningsBreakdown->firstItem() }}-{{ $earningsBreakdown->lastItem() }} of {{ $earningsBreakdown->total() }} completed bookings

@foreach($earningsBreakdown as $payment) @endforeach
Date Client Booking Your Earnings Actions
@userDate($payment->created_at) {{ $payment->booking->bookingRequest->client->name ?? 'N/A' }}
{{ $payment->booking->bookingRequest->proposed_date_display ?? 'N/A' }}
${{ number_format($payment->golfer_amount, 2) }} View Receipt
Page Subtotal: ${{ number_format($earningsBreakdown->sum('golfer_amount'), 2) }}
@if($earningsBreakdown->hasPages())
{{ $earningsBreakdown->links() }}
@endif
@endif

Withdrawal History

@if($withdrawals->count() > 0)
@foreach($withdrawals as $withdrawal) @endforeach
Date Amount Status Actions
@userDate($withdrawal->created_at) ${{ number_format($withdrawal->amount, 2) }} {{ ucfirst($withdrawal->status) }} View Details
{{ $withdrawals->links() }}
@else

No withdrawals yet

You haven't requested any withdrawals yet. Once you earn from bookings, you can request withdrawals here.

@endif