@extends('dashboard.admin.layout') @section('title', 'Manual Withdrawals') @section('page_subtitle', 'Withdrawal history sits first with new withdrawal forms launched from a modal.') @section('content')
| ID | User | Amount | Status | Date |
|---|---|---|---|---|
| {{ $entry->id }} | {{ $entry->user->email ?? '-' }} | {{ number_format($entry->amount, 8) }} | {{ ucfirst($entry->status) }} | {{ $entry->created_at->format('Y-m-d H:i') }} |
| No manual withdrawals yet. | ||||