@extends('admin.layout') @section('title', 'Dashboard') @section('page-title', 'Dashboard') @section('page-description', 'Overview of your professional dating platform') @section('content')

Total Users

{{ number_format($stats['users']['total']) }}

+{{ $stats['users']['new_today'] }} today

Active Users

{{ number_format($stats['users']['active']) }}

{{ number_format($stats['users']['verified']) }} verified

Total Revenue

₹{{ number_format($stats['revenue']['total'], 2) }}

₹{{ number_format($stats['revenue']['today'], 2) }} today

Total Matches

{{ number_format($stats['matches']['total']) }}

{{ number_format($stats['matches']['mutual']) }} mutual

User Growth

Revenue Trend

Top Industries

@foreach($topIndustries as $industry)
{{ $industry['industry'] }} {{ $industry['count'] }}
@endforeach

System Health

@foreach($systemHealth as $service => $health)
{{ str_replace('_', ' ', $service) }} {{ ucfirst($health['status']) }}
@endforeach

Quick Stats

Messages Today {{ number_format($stats['messages']['today']) }}
Calls Today {{ number_format($stats['calls']['today']) }}
Pending Verifications {{ number_format($stats['verifications']['pending']) }}
Premium Users {{ number_format($stats['users']['premium']) }}

Recent Activities

    @foreach($recentActivities as $index => $activity)
  • @if(!$loop->last) @endif

    {{ $activity['message'] }}

    {{ $activity['created_at']->diffForHumans() }}
  • @endforeach
@endsection @push('scripts') @endpush