@extends('layouts.admin') @section('title', 'Center Dashboard') @section('content') {{-- Main Stats --}}

Registered Citizens

{{ $stats['citizens'] }}

Mapped Families

{{ $stats['families'] }}

Total Applications

{{ $stats['applications'] }}

Pending Citizen KYC

{{ $stats['pending_kyc'] ?? 0 }}

Renewal Reminders

{{ ($stats['renewals_due_15'] ?? 0) + ($stats['renewals_due_7'] ?? 0) + ($stats['renewals_due_3'] ?? 0) }}

{{-- Renewal Breakdown + Quick Links --}}
Renewal Breakdown

{{ $stats['renewals_due_15'] ?? 0 }}

Due in 15 days

{{ $stats['renewals_due_7'] ?? 0 }}

Due in 7 days

{{ $stats['renewals_due_3'] ?? 0 }}

Due in 3 days
@endsection