@extends('dashboard.admin.layout') @section('title', 'Manual Funding') @section('page_subtitle', 'Wallet entry history first, with manual creation standardized behind a modal.') @section('content')
Recent Manual Entries

Review credits and debits created by admins and open the create form only when needed.

@forelse($manualTransactions as $tx) @empty @endforelse
Reference User Type Asset Amount Status Created
{{ $tx->reference }} {{ $tx->user->email ?? 'Deleted User' }} {{ ucfirst($tx->type) }} ({{ $tx->direction }}) {{ $tx->asset }} {{ number_format($tx->amount, 8) }} @if($tx->status === 'completed') Completed @elseif($tx->status === 'pending') Pending @else Rejected @endif {{ $tx->created_at->format('Y-m-d H:i') }}
No manual entries yet.
{{ $manualTransactions->links() }}
@endsection