User Details

Name: {{ $tx->user->fullname }}
Balance at Request: {{ number_format($tx->current_balance, 2) }}
Current Balance: {{ number_format($tx->savingWallet?->balance, 2) }}
Withdrawal Amount:

N{{ number_format($tx->amount, 2) }}

Withdrawal Fee:

N{{ number_format($tx->withdrawal_fee, 2) }}

Date submitted: {{ $tx->created_at->format('d, M Y') }}
Status: @if ($tx->status == 'pending') Pending @elseif($tx->status == 'approved') Approved @else Rejected @endif
@if ($tx->withdrawal_mode == 'bank')
Bank Name Account Name Account Number
{{ $tx->userBank?->bank?->name }} {{ $tx->userBank?->account_name }} {{ $tx->userBank?->account_number }}
@endif
@if ($tx->status == 'pending')
@csrf @if ($tx->withdrawal_mode == 'bank') @else @endif

@include('admin.cooperative.partials.withdrawalRejectionModal') @endif