{{ __('Reference') }}
{{ $withdrawal->reference }}
{{ __('Status') }}
{{ ucfirst($withdrawal->status) }}
{{ __('Date Requested') }}
{{ $withdrawal->created_at->format('M d, Y H:i') }}
{{ __('Date Processed') }}
{{ $withdrawal->processed_at->format('M d, Y H:i') }}
{{ __('Amount') }}
R{{ number_format($withdrawal->amount, 2) }}
{{ __('Fee') }}
${{ number_format($withdrawal->fee_amount, 2) }}
{{ __('Net Amount') }}
${{ number_format($withdrawal->net_amount, 2) }}
{{ __('Your Notes') }}
{{ $withdrawal->notes }}
{{ __('Admin Notes') }}
{{ $withdrawal->admin_notes }}
{{ __('Payment Method') }}
{{ $withdrawal->paymentMethod->name }}
{{ __('Type') }}
{{ ucfirst($withdrawal->paymentMethod->type) }}
{{ __('Account Name') }}
{{ $withdrawal->paymentMethod->account_name }}
{{ __('Account Number') }}
{{ $withdrawal->paymentMethod->account_number }}
{{ __('Bank Name') }}
{{ $withdrawal->paymentMethod->bank_name }}
{{ __('SWIFT Code') }}
{{ $withdrawal->paymentMethod->swift_code }}
{{ __(ucfirst(str_replace('_', ' ', $key))) }}
{{ $value }}
{{ __('Payment method details are not available.') }}
{{ __(ucfirst(str_replace('_', ' ', $key))) }}
{{ $value }}
{{ $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.') }}