@extends('dashboard.admin.layout') @section('title', 'Admin Dashboard') @section('page_subtitle', 'Unified dashboard shell with admin metrics, queues, and shortcuts.') @section('content')
Operations Overview
Admin dashboard in the same visual system as the user area.

Review growth, funding queues, wallet activity, and the fastest routes into user management, inventory, and transaction processing.

Quick Actions

Jump directly to the admin workstreams that need the most attention.

Users
{{ number_format($stats['total_users']) }}
Registered platform accounts
Pending Deposits
{{ number_format($stats['pending_deposits']) }}
Awaiting manual review
Pending Withdrawals
{{ number_format($stats['pending_withdrawals']) }}
Requires release decisions
Transactions
{{ number_format($stats['total_transactions']) }}
Total wallet activity records
Stock Orders
{{ number_format($stats['total_orders']) }}
Open and historical orders
Recent Transactions
Latest activity across all user wallets
View All
@forelse($recentTransactions as $tx) @empty @endforelse
Reference User Type Amount Status Date
{{ $tx->reference }} {{ $tx->user->email }} @if($tx->type === 'deposit') Deposit @elseif($tx->type === 'withdrawal') Withdrawal @else {{ ucfirst($tx->type) }} @endif {{ number_format($tx->amount, 8) }} {{ $tx->asset }} @if($tx->status === 'completed') Completed @elseif($tx->status === 'pending') Pending @else Rejected @endif {{ $tx->created_at->format('Y-m-d H:i') }}
No transactions yet.
Active Cryptocurrencies
@forelse($cryptocurrencies as $crypto)
{{ $crypto->asset }}
Deposit asset enabled
Active
@empty

No cryptocurrencies configured.

@endforelse
@if($stats['pending_deposits'] > 0 || $stats['pending_withdrawals'] > 0)
Attention Required

Pending deposits: {{ $stats['pending_deposits'] }}
Pending withdrawals: {{ $stats['pending_withdrawals'] }}

Open Review Queue
@endif
@endsection