@extends('layouts.admin') @section('title', 'Executive Dashboard') @section('header_title', 'Executive Dashboard') @section('content')
Total Registrations

{{ $stats['total'] }}

All Time
Database Records Live Synchronized
Pending Review

{{ $stats['pending'] }}

Action Needed
Awaiting Staff Check Review →
Approved Members

{{ $stats['approved'] }}

Active
Certified Practitioners Enrolled
Rejected / Queries

{{ $stats['rejected'] }}

Disapproved
Incomplete Proofs Archived
Recent Member Submissions
Real-time registrations recorded in database
View Registry ({{ $stats['total'] }})
@forelse($recentApplications as $app) @empty @endforelse
Applicant District Contact Status Submitted Action
@if($app->photo_doc) Photo @else
@endif
{{ $app->name }} {{ $app->application_no }}
{{ $app->district }}
{{ $app->whatsapp_number ?: $app->mobile_number }}
{{ $app->email }}
@if($app->status == 'pending') @endif {{ ucfirst(str_replace('_', ' ', $app->status)) }} {{ $app->created_at->format('d M Y') }}
No submissions recorded yet.
District Distribution
Top Regions
@forelse($districtStats as $dist) @php $pct = $stats['total'] > 0 ? round(($dist->count / $stats['total']) * 100) : 0; @endphp
{{ $dist->district }} {{ $dist->count }} ({{ $pct }}%)
@empty

No district data available.

@endforelse
Quick Actions
Operational shortcuts

Export verified registrations or review incoming website inquiries.

@endsection