@extends('layouts.admin') @section('title', 'Dashboard') @section('page-title', 'Dashboard') @section('content') {{-- Stats Grid --}}
@php $cards = [ ['label' => 'Total Users', 'value' => number_format($stats['total_users']), 'icon' => 'M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z', 'from' => '#4f46e5', 'to' => '#7c3aed'], ['label' => 'Tournaments', 'value' => number_format($stats['total_tournaments']), 'icon' => 'M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z', 'from' => '#0891b2', 'to' => '#0e7490'], ['label' => 'Active Matches', 'value' => number_format($stats['active_tournaments']), 'icon' => 'M13 10V3L4 14h7v7l9-11h-7z', 'from' => '#16a34a', 'to' => '#15803d'], ['label' => 'Total Revenue', 'value' => '৳'.number_format($stats['total_revenue']), 'icon' => 'M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z', 'from' => '#d97706', 'to' => '#b45309'], ['label' => 'Pending Withdrawals', 'value' => number_format($stats['pending_withdrawals']), 'icon' => 'M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z', 'from' => '#dc2626', 'to' => '#b91c1c'], ['label' => "Today's Deposits", 'value' => '৳'.number_format($stats['today_deposits']), 'icon' => 'M7 11l5-5m0 0l5 5m-5-5v12', 'from' => '#7c3aed', 'to' => '#6d28d9'], ]; @endphp @foreach($cards as $card)

{{ $card['value'] }}

{{ $card['label'] }}

@endforeach
{{-- Charts Row --}}
{{-- Daily Registrations --}}

Daily Registrations (7 Days)

{{-- Revenue by Method --}}

Revenue by Method

{{-- Second Charts Row --}}
{{-- Tournaments by Game --}}

Tournaments by Game

{{-- Quick Actions --}}

Quick Actions

{{-- Recent Transactions --}}

Recent Transactions

View all
@foreach($recentTransactions as $txn) @endforeach
User Type Amount Method Status Date
{{ $txn->user->name ?? 'N/A' }}
{{ $txn->user->phone ?? '' }}
{{ str_replace('_',' ',$txn->type) }} ৳{{ number_format($txn->amount,2) }} {{ $txn->method ?? '-' }} {{ ucfirst($txn->status) }} {{ $txn->created_at->format('d M, g:ia') }}
@endsection @push('scripts') @endpush