@extends('layouts.app') @section('content')
{{ $class->subject->title ?? 'N/A' }}
Subject
Instructor
Schedule
| Date | Status | Remark | Taken By | Session Status |
|---|---|---|---|---|
|
{{ $session->session_date->format('d') }}
{{ $session->session_date->format('M') }}
{{ $session->session_date->format('l') }}
{{ $session->session_date->format('Y') }}
|
@if($studentEntry) @php $badgeClass = [ 'present' => 'success', 'absent' => 'danger', 'late' => 'warning', 'excused' => 'info' ][$studentEntry->status] ?? 'secondary'; @endphp {{ ucfirst($studentEntry->status) }} @else Not Marked @endif |
{{ $studentEntry->remark ?? '-' }}
|
|
@if($session->locked) Locked @else Open @endif |
No attendance records foundYour attendance for this class will appear here once recorded. |
||||