@extends('dashboard.admin.layout') @section('title', 'Manual Deposits') @section('page_subtitle', 'Deposit history first, with new manual entries handled in 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 deposits yet. | ||||