@extends('backend.layouts.grid') @section('title', __('Academic Time Table')) @section('link', route('admin.academicTimeTable.create')) @section('content') @if(count($syllabusList) > 0)
@php $count=0; @endphp @foreach ($syllabusList as $syllabus) @php $count++; @endphp @if($syllabus->class_name == 0) @else @endif @endforeach
{{ __('#') }} {{ __('Campus') }} {{ __('Shift') }} {{ __('Class') }} {{ __('Section') }} {{ __('Student') }} {{ __('Time Table') }} {{ __('Action') }}
{{ $count }} {{ $syllabus->campus }} {{ $syllabus->shift }}{{ 'All' }}{{ shortertext($syllabus->class_name, 50) }} @if($syllabus->section == 0) {{ 'All' }} @else {{ studentSection($syllabus->section) }} @endif {{ ($syllabus->student_id == 0)?"All":$syllabus->student_id }}
@else @include('backend.includes.empty') @endif @endsection