@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')
Withdrawal History

Review all manual withdrawal debits and add more from a standard modal button.

@forelse($entries as $entry) @empty @endforelse
IDUserAmountStatusDate
{{ $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.
{{ $entries->links() }}
@endsection