@extends('admin.template.app') @section('title', 'Withdraw Requests') @section('content')
{{-- SUCCESS MESSAGE --}} @if (session('success'))
{{ session('success') }}
@endif {{-- ERROR MESSAGE --}} @if (session('error'))
{{ session('error') }}
@endif {{-- VALIDATION ERRORS --}} @if ($errors->any())
@endif

Withdraw Requests

@forelse ($userWithdraws as $key => $withdraw) {{-- Action --}} @empty @endforelse
SN Withdraw By Current Balance Withdraw Amount Withdraw Charge After Balance Bank Name Account Holder Name Account Number Bank Receipt Remark Status Action
{{ $key + 1 }} {{ $withdraw->user->name ?? 'N/A' }} {{ $withdraw->current_balance }} {{ $withdraw->withdraw_amount }} {{ $withdraw->withdraw_charge }} {{ $withdraw->after_balance }} {{ $withdraw->user->bank_name ?? 'N/A' }} {{ $withdraw->user->account_holder_name ?? 'N/A' }} {{ $withdraw->user->bank_account_number ?? 'N/A' }} Bank Receipt {{ $withdraw->remark }} @if ($withdraw->status == 'pending') Pending @elseif ($withdraw->status == 'approved') Approved @else Rejected @endif
No Withdraw Request Found
@endsection