@extends('layouts.app') @section('title', 'Attendance Summary') @section('breadcrumb', 'Attendance › Summary') @section('content')
| 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 }} |
|
@if($pct >= 75) Good @elseif($pct >= 50) At Risk @else Critical @endif |
| No attendance data for this term yet. Record attendance. | ||||||