@extends('layouts.app') @section('content')
Class: {{ $attendanceSession->class->subject->title ?? 'N/A' }}
Instructor: {{ $attendanceSession->takenBy->username ?? 'N/A' }}
| # | Student | Status | Remark | Actions |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $entry->student->user->username ?? 'N/A' }} | {{ ucfirst($entry->status) }} | {{ $entry->remark ?? '-' }} | @if(!$attendanceSession->locked) @else Locked @endif |