@if($students->count() > 0)
| # | Student Name | Father Name | Institute ID | Status |
|---|---|---|---|---|
| {{ $loop->iteration }} | {{-- 🧑 Student Name --}}
{{ $student->name ?? '—' }} {{ $student->user->email ?? '' }} |
{{-- 👨 Father Name --}}
{{ $student->father_name ?? '—' }} | {{-- 🏫 Institute ID --}}{{ $student->institute_id ?? 'N/A' }} | {{-- 📋 Present / Absent --}}
|
There are no students enrolled in this class.