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

Promote Student 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('student-shift.batch', [$srs->encode($dep->id), $srs->encode($dep->faculty_id)]), $dep->department_name) }}
  • @empty {{ 'No Departments' }} @endforelse
{{ 'No Schools' }}
@endsection @section('scripts') @endsection