@extends('layouts.studentportalnav') @section('title', 'My Timetable') @section('content')
Automobile Engineering Academy Student Portal
Please arrive at least 15 minutes before each class. Attendance is compulsory for all practical sessions.
| Time | @foreach($days as $day){{ $day }} {{ ($todayName ?? '') == $day ? '(Today)' : '' }} | @endforeach||||
|---|---|---|---|---|---|
| {{ $slot }} | 🍴 LUNCH BREAK / REST TIME | ||||
| {{ $slot }} | @foreach($days as $day)
@if(isset($schedule[$slot][$day]))
@php
$cell = $schedule[$slot][$day];
$typeClass = 'badge-theory';
if(strtolower($cell->type) == 'practical') {
$typeClass = 'badge-practical';
} elseif(strtolower($cell->type) == 'workshop') {
$typeClass = 'badge-workshop';
}
@endphp
{{ $cell->type }} {{ $cell->subject_name }} @else - @endif |
@endforeach
||||
| No timetable data available right now. | |||||