@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} Course Shift| Index @endsection @section('content')

Course Shift Management

The following is the list of college(s) and schools available click department name to continue

@foreach ($colleges as $college) @if (count($college->faculties) > 0) @else @endif @forelse($college->faculties as $faculty) @empty @endforelse @endforeach
College Name Schools Name Departments
{{ $college->college_name }} {{ $college->college_name }}
{{ $faculty->faculty_name }}
    @forelse($faculty->departments as $dep)
  • {{ link_to(route('courses.shift.department-courses', $srs->encode($dep->id)), $dep->department_name) }}
  • @empty {{ 'No Departments' }} @endforelse
{{ 'No Schools' }}
@endsection @section('scripts') @endsection