Process Withdrawal Request
@if ($withdrawal->status == 'pending')

Send Funds to {{ $withdrawal->user->name }} through his payment details below

@elseif($withdrawal->status == 'cancelled')

Payment Cancelled

@else

Payment Completed

@endif
@if ($method->default_pay) @if ($withdrawal->payment_mode == 'Bitcoin')
BTC Address
@elseif($withdrawal->payment_mode == 'Ethereum')
ETH Address
@elseif($withdrawal->payment_mode == 'Litecoin')
LTC Address
@elseif ($withdrawal->payment_mode == 'USDT')
USDT Address
@elseif ($withdrawal->payment_mode == 'BUSD')
BUSD Address
@elseif($withdrawal->payment_mode == 'Bank Transfer')
Bank Name
Account Name
Account Number
@if (!empty($withdrawal->user->swift_code))
Swift Code
@endif @endif @else @if ($method->methodtype == 'crypto')
{{ $withdrawal->payment_mode }} Address
@else
{{ $withdrawal->payment_mode }} Payment Details
@endif @endif @if ($withdrawal->status == 'processed' || $withdrawal->status == 'cancelled') Cancel @endif
@if ($withdrawal->status == 'pending')
Action
{{-- --}}
Subject
Enter Reasons for rejecting this withdrawal request
@can('process withdrawals') Proccess @endcan Cancel
@endif