{{ __('Withdrawal 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') }}

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

{{ __('Fee') }}

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

{{ __('Net Amount') }}

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

@if ($withdrawal->notes)

{{ __('Your Notes') }}

{{ $withdrawal->notes }}

@endif @if ($withdrawal->admin_notes)

{{ __('Admin Notes') }}

{{ $withdrawal->admin_notes }}

@endif @if ($withdrawal->status == 'pending')
@csrf
@endif

{{ __('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

{{ __('Withdrawal Terms') }}

{{ $settings->withdrawal_terms ?? __('Withdrawals are processed within ' . $settings->withdrawal_processing_days . ' business days. A fee of ' . $settings->withdrawal_fee_percentage . '% + R' . number_format($settings->withdrawal_fee_fixed, 2) . ' applies to all withdrawals.') }}