@extends('dashboard.admin.layout') @section('title', 'User Deposits') @section('content')
User Deposit Requests
Approve or reject user deposits.
@forelse($transactions as $tx) @empty @endforelse
Reference User Asset Amount Status TX Hash Date Action
{{ $tx->reference }}
{{ $tx->user->name ?? 'Deleted User' }}
{{ $tx->user->email ?? '-' }}
{{ $tx->asset }} {{ number_format((float) $tx->amount, 8) }} @if($tx->status === 'completed') Completed @elseif($tx->status === 'pending') Pending @else Rejected @endif {{ \Illuminate\Support\Str::limit((string) $tx->tx_hash, 18) }} {{ $tx->created_at?->format('Y-m-d H:i') }} @if($tx->status === 'pending')
@csrf
@csrf
@else Processed @endif
No deposits found.
{{ $transactions->links() }}
@endsection