@extends('Admin.layouts.app') @section('title', 'Withdrawal Requests') @section('content')
| #ID | User | Amount | Status | Requested At | Action |
|---|---|---|---|---|---|
| {{ $withdrawal->id }} | {{ $withdrawal->user->name ?? 'N/A' }} | ${{ number_format($withdrawal->amount, 2) }} | {{ ucfirst($withdrawal->status) }} | {{ $withdrawal->created_at->format('d-m-Y H:i') }} | @if($withdrawal->status == 'pending') @else - @endif |