{{ __('Withdrawal Details') }}

@if (session('withdrawal_submitted')) @endif @if (session('withdrawal_cancel_error')) @endif

Withdrawal Request #{{ $withdrawal->id }}

{{ $withdrawal->status_label }}

Requested Amount

{{ $withdrawal->formatted_amount }}

@if ($withdrawal->platform_fee_deducted > 0)

Processing Fee

-{{ $withdrawal->formatted_platform_fee }}

@endif

Net Amount

{{ $withdrawal->formatted_net_amount }}

Request Information

Request Date: @userDateTime($withdrawal->created_at)
Status: {{ $withdrawal->status_label }}
Payment Method: {{ ucwords(str_replace('_', ' ', $withdrawal->payment_method)) }}
@if ($withdrawal->processed_at)
Processed Date: @userDateTime($withdrawal->processed_at)
@endif @if ($withdrawal->completed_at)
Completed Date: @userDateTime($withdrawal->completed_at)
@endif @if ($withdrawal->transaction_reference)
Transaction Reference: {{ $withdrawal->transaction_reference }}
@endif
@if ($withdrawal->notes)

Notes:

{{ $withdrawal->notes }}

@endif
@php $bankDetails = json_decode($withdrawal->bank_account_details, true); @endphp @if ($bankDetails)

Destination Bank Account

@if (isset($bankDetails['bank_name']))
Bank: {{ $bankDetails['bank_name'] }}
@endif @if (isset($bankDetails['account_holder_name']))
Account Holder: {{ $bankDetails['account_holder_name'] }}
@endif @if (isset($bankDetails['account_number_last4']))
Account: {{ $bankDetails['account_number_last4'] }}
@endif @if (isset($bankDetails['routing_number_last4']))
Routing: {{ $bankDetails['routing_number_last4'] }}
@endif
@endif @if ($withdrawal->isPending())

Pending Review

Your withdrawal request is being reviewed. This typically takes 3-5 business days. You'll receive an email notification once it's processed.

@elseif ($withdrawal->isProcessing())

Processing

Your withdrawal is being processed. The funds should arrive in your bank account within 3-5 business days.

@elseif ($withdrawal->isCompleted())

Completed

Your withdrawal has been completed successfully. The funds should now be in your bank account.

@elseif ($withdrawal->isFailed())

Failed

Unfortunately, your withdrawal request failed. Please check your bank account details and try again. If the problem persists, contact support.

@elseif ($withdrawal->isCancelled())

Cancelled

This withdrawal request has been cancelled. The amount has been returned to your available balance.

@endif
Back to Withdrawals @if ($withdrawal->isPending())
@csrf @method('POST')
@endif