@extends('admin.layouts.app') @section('title', 'Student Attendance') @section('breadcrumb')
{{ $student->student_code }} | {{ $student->class?->name }}
| Subject | Category | Total Classes | Present | Absent | Attendance % |
|---|---|---|---|---|---|
| {{ $row->subject_name }} | {{ str_replace('_','/',$row->category) }} | {{ $row->total }} | {{ $row->attended }} | {{ $row->absent }} |
|
| No attendance records found | |||||
| Overall Average | {{ $report->sum('total') }} | {{ $report->sum('attended') }} | {{ $report->sum('absent') }} | @php $avgPct = $report->count() ? round($report->avg('percentage'),1) : 0; @endphp {{ $avgPct }}% | |