@extends('layouts.app') @section('title', 'Dashboard') @section('content') @php $summary = $dashboard['summary']; $secondary = $dashboard['secondary']; @endphp
Overview of today's attendance and school activity.
Total Students
{{ number_format($summary['total_students']) }}
Present Today
{{ number_format($summary['present']) }}
Absent Today
{{ number_format($summary['absent']) }}
Late Arrivals
{{ number_format($summary['late']) }}
{{ number_format($secondary['teachers_present']) }}
Teachers Present
{{ number_format($secondary['devices_online']) }} / {{ number_format($secondary['devices_total']) }}
Devices Online
{{ number_format($secondary['sms_sent']) }}
SMS Notifications
{{ number_format($secondary['emails_sent']) }}
Emails Sent
Present, absent and late attendance over the recent school days.
Overall student attendance rate.
{{ number_format($summary['present']) }}
Present
{{ number_format($summary['absent']) }}
Absent
{{ number_format($summary['late']) }}
Late
Today's attendance percentage across classes.
Daily present and absent attendance.
Distribution of today's attendance statuses.
Current biometric device connectivity.
{{ $device['name'] }}
{{ $device['last_sync'] }}
No attendance devices
No biometric devices are currently configured.
Latest attendance records received today.
| Student | Class | Time | Status |
|---|---|---|---|
|
{{ $attendance['initials'] }}
{{ $attendance['student_name'] }} {{ $attendance['student_code'] }} |
{{ $attendance['class'] }} | {{ $attendance['time'] }} | @switch($attendance['status']) @case('present') Present @break @case('late') Late @break @case('absent') Absent @break @default {{ ucfirst($attendance['status']) }} @endswitch |
|
No attendance recorded today Attendance records will appear here when received. |
|||
Latest attendance communication and system activity.
{{ $notification['title'] }}
{{ $notification['time'] }}{{ $notification['message'] }}
No recent notifications
Students with repeated late attendance this month.
{{ $student['name'] }}
{{ $student['class'] }}
No frequent late arrivals
No students currently require late-arrival follow-up.
Students requiring attendance follow-up this month.
{{ $student['name'] }}
{{ $student['class'] }}
No frequent absences
No students currently require absence follow-up.
Class attendance percentage during recent school days.
Frequently used administrative actions.
Add Student
New admission
@endcan @can('teachers.create')Add Teacher
Register staff
@endcan @can('school-classes.view')Classes
Manage classes
@endcan @can('holidays.create')Add Holiday
School calendar
@endcan @can('attendance-devices.view')Devices
Device status
@endcan @can('school-settings.view')Settings
Configuration
@endcan