@extends('admin.layouts.home') @section('title', 'Withdraw Requests') @section('content')
| ID | Username | Amount | Withdraw Type | Status | Created At | Action |
|---|---|---|---|---|---|---|
| {{ $request->id }} | {{ $request->user->username }} | {{ number_format($request->amount, 2) }} | {{ $withdrawMethod[$request->type] ?? $request->type }} | @if($request->status == 1) Pending @elseif($request->status == 2) Approved @else Rejected @endif | {{ $request->created_at->format('Y-m-d H:i:s') }} | View |
| No withdraw requests found | ||||||