@foreach($students as $student) @php $latest = $student->attendanceEntries() ->where('class_id', $class->id) ->latest('session_date') ->first(); @endphp @endforeach
# Student Name Father Name Institute ID Status
{{ $loop->iteration }} {{ $student->name }} {{ $student->father_name ?? '—' }} {{ $student->institute_id ?? '—' }} @if($latest) {{ ucfirst($latest->status) }} @else No record @endif