{{-- Top 5 School-wide --}} @php $topStudents = $this->getTopStudents(5); @endphp

Top 5 Students (School-wide)

@if ($topStudents->isEmpty()) No attendance records found. @else
@foreach ($topStudents as $student)
{{ $student['roll_no'] ?? '—' }}

{{ $student['name'] }}

{{ $student['class_name'] ?? '—' }}

{{ $student['present_count'] }}

days present

@endforeach
@endif
{{-- Class-wise --}} @php $classWise = $this->getClassWiseTopStudents(); @endphp