{{-- admin/attendance/index.blade.php --}} @extends('admin.layouts.app') @section('title', 'Attendance') @section('breadcrumb') @endsection @section('content') @if($summary->count())
Today's Summary
@foreach($summary as $row) @endforeach
ClassSubjectTotalPresentAbsent%
{{ $row->class_name }} {{ $row->subject_name }} {{ $row->total }} {{ $row->present }} {{ $row->absent }} @php $pct = $row->total > 0 ? round($row->present / $row->total * 100) : 0; @endphp {{ $pct }}%
@endif
@foreach($classes as $class)
{{ $class->name }}
Total {{ $class->students?->count() }} students
Mark Today
@endforeach
@endsection