@extends('dashboard.admin.layout') @section('title', 'User Deposits') @section('content')
| 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') @else Processed @endif |
| No deposits found. | |||||||