Process Withdrawal Request
Back
@if ($withdrawal->status != 'Completed')
Send Funds to {{ $user->first_name }} {{ $user->last_name }} using the details below
@elsePayment Completed
@endif- Type: {{ $withdrawal->type }}
- Amount: ${{ number_format($withdrawal->amount, 2) }} ({{ $withdrawal->symbol }})
- Fee: ${{ number_format($withdrawal->fee ?? 0, 2) }}
- Total Deducted: ${{ number_format($withdrawal->amount + ($withdrawal->fee ?? 0), 2) }}
- Status: @if ($withdrawal->status == 'Completed') {{ $withdrawal->status }} @elseif ($withdrawal->status == 'Rejected') {{ $withdrawal->status }} @else {{ $withdrawal->status }} @endif
- Reference: {{ $withdrawal->ref }}
- Date: {{ \Carbon\Carbon::parse($withdrawal->created_at)->toDayDateTimeString() }}
@if ($withdrawal->payment_mode == 'Bank Transfer')
@if ($withdrawal->status != 'Completed')