@php $students = $this->getStudents(); $myStudentId = $this->getMyStudentId(); @endphp
@if ($students->isEmpty()) No students found in your class. @else
@foreach ($students as $index => $student) @endforeach
# Name Roll Present
{{ $index + 1 }} {{ $student['name'] }} @if ($student['id'] === $myStudentId) (You) @endif {{ $student['roll_no'] ?? '—' }} {{ $student['present_count'] }}
@endif