@extends('layouts.app') @section('title', 'Admin Dashboard') @section('page_title', 'Admin Dashboard') @section('content')
{{ number_format($stats['total_users']) }}
Total Users
{{ $stats['active_users'] }} Active
{{ number_format($stats['pending_kyc']) }}
Pending KYC
Review Now →
${{ number_format($stats['total_deposits'], 2) }}
Total Deposits
{{ $stats['pending_transactions'] }} Pending
{{ number_format($stats['active_investments']) }}
Active Investments
{{ $stats['total_portfolios'] }} Portfolios
Recent Users View All
@forelse($recent_users as $user) @empty @endforelse
User Status Joined Action
{{ $user->name }}
{{ $user->email }}
@if($user->status === 'active') Active @elseif($user->status === 'pending') Pending @else Suspended @endif {{ $user->created_at->diffForHumans() }}
No users found
Pending Transactions View All
@forelse($pending_transactions as $transaction) @empty @endforelse
User Type Amount Status Action
{{ $transaction->user->name }}
{{ $transaction->crypto_currency }}
{{ ucfirst($transaction->type) }}
{{ number_format($transaction->amount, 8) }}
${{ number_format($transaction->usd_value, 2) }}
Pending Review
No pending transactions
Monthly Deposit Volume
@endsection @push('scripts') @endpush