@extends('layouts.app') @section('title', 'Attendance Summary') @section('breadcrumb', 'Attendance › Summary') @section('content')

Attendance Summary

Record Attendance
@forelse($summary as $row) @php $pct = $row->days_school_opened > 0 ? round(($row->days_present / $row->days_school_opened) * 100) : 0; @endphp @empty @endforelse
Student Class Days Opened Days Present Absent Rate Status
{{ $row->student->full_name }}
{{ $row->student->mcss_student_id }}
{{ optional($row->classArm)->full_name ?? '—' }} {{ $row->days_school_opened }} {{ $row->days_present }} {{ $row->days_school_opened - $row->days_present }}
{{ $pct }}%
@if($pct >= 75) Good @elseif($pct >= 50) At Risk @else Critical @endif
No attendance data for this term yet. Record attendance.
@endsection