Withdrawal Request Details

{{ __('Back to List') }}

Status:

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

Withdrawal Amount:

{{ config('custom.currency_symbol') }}{{ number_format($withdrawal->amount, 2) }}

Merchant Information:

Business Name: {{ $withdrawal->merchant->business_name }}

Email: {{ $withdrawal->merchant->business_email }}

Bank Account Details:

Bank: {{ $withdrawal->bankAccount->bank_name }}

Account Number: {{ $withdrawal->bankAccount->account_number }}

Account Title: {{ $withdrawal->bankAccount->account_title }}

@if($withdrawal->bankAccount->branch_name)

Branch: {{ $withdrawal->bankAccount->branch_name }}

@endif

Request Details:

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

@if($withdrawal->processed_at)

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

@endif @if($withdrawal->notes)

Notes: {{ $withdrawal->notes }}

@endif
@if($withdrawal->status === 'pending')
@csrf @method('PATCH')
{{ __('Cancel') }} {{ __('Process Request') }}
@endif