@if($students->count() > 0)
@foreach($students as $student) {{-- 🧑 Student Name --}} {{-- 👨 Father Name --}} {{-- 🏫 Institute ID --}} {{-- 📋 Present / Absent --}} @endforeach
# Student Name Father Name Institute ID Status
{{ $loop->iteration }} {{ $student->name ?? '—' }}
{{ $student->user->email ?? '' }}
{{ $student->father_name ?? '—' }} {{ $student->institute_id ?? 'N/A' }}
{{-- Hidden ID --}}
@else
No Students Found

There are no students enrolled in this class.

@endif