{{ __('Withdrawal Request Details') }}

{{ __('Back to Withdrawals') }}
@if (session('success')) @endif @if (session('error')) @endif

{{ __('Withdrawal Information') }}

{{ __('Reference') }}

{{ $withdrawal->reference }}

{{ __('Status') }}

{{ ucfirst($withdrawal->status) }}

{{ __('Date Requested') }}

{{ $withdrawal->created_at->format('M d, Y H:i') }}

@if ($withdrawal->processed_at)

{{ __('Date Processed') }}

{{ $withdrawal->processed_at->format('M d, Y H:i') }}

@endif

{{ __('Amount') }}

${{ number_format($withdrawal->amount, 2) }}

{{ __('Fee') }}

R{{ number_format($withdrawal->fee_amount, 2) }}

{{ __('Net Amount') }}

R{{ number_format($withdrawal->net_amount, 2) }}

@if ($withdrawal->notes)

{{ __('User Notes') }}

{{ $withdrawal->notes }}

@endif @if ($withdrawal->admin_notes)

{{ __('Admin Notes') }}

{{ $withdrawal->admin_notes }}

@endif

{{ __('User Information') }}

{{ __('Name') }}

{{ $withdrawal->user->name }}

{{ __('Email') }}

{{ $withdrawal->user->email }}

{{ __('User ID') }}

{{ $withdrawal->user->id }}

{{ __('Registered Since') }}

{{ $withdrawal->user->created_at->format('M d, Y') }}

{{ __('Current Balance') }}

R{{ number_format($withdrawal->user->balance, 2) }}

{{ __('Payment Method') }}

@if ($withdrawal->paymentMethod)

{{ __('Payment Method') }}

{{ $withdrawal->paymentMethod->name }}

{{ __('Type') }}

{{ ucfirst($withdrawal->paymentMethod->type) }}

{{ __('Account Name') }}

{{ $withdrawal->paymentMethod->account_name }}

{{ __('Account Number') }}

{{ $withdrawal->paymentMethod->account_number }}

@if ($withdrawal->paymentMethod->bank_name)

{{ __('Bank Name') }}

{{ $withdrawal->paymentMethod->bank_name }}

@endif @if ($withdrawal->paymentMethod->swift_code)

{{ __('SWIFT Code') }}

{{ $withdrawal->paymentMethod->swift_code }}

@endif @if (!empty($withdrawal->paymentMethod->additional_details)) @foreach ($withdrawal->paymentMethod->additional_details as $key => $value)

{{ __(ucfirst(str_replace('_', ' ', $key))) }}

{{ $value }}

@endforeach @endif @else

{{ __('Payment method details are not available.') }}

@if (!empty($withdrawal->payment_details))

{{ __('Saved Payment Details') }}

@foreach ($withdrawal->payment_details as $key => $value)

{{ __(ucfirst(str_replace('_', ' ', $key))) }}

{{ $value }}

@endforeach @endif @endif
@if (in_array($withdrawal->status, ['pending', 'processing']))

{{ __('Update Withdrawal Status') }}

@csrf @method('PUT')

{{ __('Required for completed status') }}

@endif