@extends('backend.master') @section('title', 'Withdraw Requests') @push('styles') {{-- Bootstrap Icons --}} @endpush @section('content')
| # | User | Method | Account | Amount | Status | TRX ID | Requested at | Action |
|---|---|---|---|---|---|---|---|---|
| {{ $w->id }} |
{{ $w->user?->name ?? 'N/A' }}
{{ $w->user?->email ?? '—' }}
|
@if($isBank)
Bank
@else
Mobile
@endif
{{ $w->method }}
|
{{ $w->account_number }}
@if($w->account_holder)
Holder: {{ $w->account_holder }}
@endif
@if($w->branch_name)
Branch: {{ $w->branch_name }}
@endif
|
{{ number_format($w->amount) }} BDT | {{ $statusLabel }} | {{ $w->trx_id ?: '—' }} | {{ $w->created_at->format('d M, Y H:i') }} | Edit |
| No withdraw requests found. | ||||||||