@extends('layouts.app') @section('title', 'Admin Dashboard') @section('page-title', 'Dashboard') @section('content') @php $hour = now()->hour; $greeting = $hour < 12 ? 'Good Morning' : ($hour < 17 ? 'Good Afternoon' : 'Good Evening'); $maxAttendance = collect($chartData)->max('total') ?: 1; @endphp
Welcome to {{ $schoolSettings['school_name'] ?? 'School' }} Admin Panel
Total Students
{{ number_format($totalStudents) }}
Total Teachers
{{ number_format($totalTeachers) }}
Total Classes
{{ $totalClasses }}
Fee Collected
₹{{ number_format($totalCollected / 1000, 1) }}k
of ₹{{ number_format($totalBilled / 1000, 1) }}k billed
Last 10 school days
| Name | Class | Average | Performance |
|---|---|---|---|
|
{{ strtoupper(substr($student->name, 0, 1)) }}
{{ $student->name }}
|
{{ $student->class_name }} {{ $student->section }} | {{ $student->avg_pct }}% |
|
| No performance data yet | |||
{{ $event->title }}
{{ $event->start_date->format('d M, Y') }}