@extends('layouts.master') @section('content')
Class Rutine List Create New Routine
@php $sn = 0; @endphp @foreach ($classRoutines as $routine) @endforeach
SN Shift Depaetment Class Section Actions
{{ ++$sn; }} {{ $routine->shift->shift_name ?? 'N/A'}} {{ $routine->department->name ?? 'N/A' }} {{ $routine->studentClass->class_name ?? '' }} {{ $routine->section->section_name ?? 'N/A' }} @if (!empty($routine->id)) @can('academic.class-routine.view') View @endcan @can('academic.class-routine.edit') Edit @endcan @can('academic.class-routine.delete')
@csrf @method('DELETE')
@endcan @else Create New Routine @endif
@endsection