@extends('layouts.admin') @section('title', 'Children Ministry') @section('page-title', 'Children Ministry') @section('page-subtitle', 'Manage classes, students, and attendance') @section('content')

Active Classes

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

Total Students

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

Active Students

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

Attendance Rate

{{ $stats['total_students'] > 0 ? round(($stats['active_students'] / $stats['total_students']) * 100) : 0 }}%

Classes

Manage Children Ministry classes

Students

Manage student roster

Attendance

Track student attendance

Recent Students

View All

Classes Overview

@endsection