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

Programme's details & information

Name {{ $program->program_name }}
Code {{ $program->program_code }}
Type {{ $program->program_type }}
Category {{ $program->program_category }}
Acronym {{ $program->program_acronym }}
Duration {{ $program->program_duration }}
Admin Department {{ $program->department->department_name }}
School&Faculty {{ $program->department->faculty->faculty_name }}
College {{ $program->department->faculty->college->college_name }}
Institution {{ $program->department->faculty->college->institution->institution_name }}
Programme Courses
    @for ($i = 1; $i <= $program->program_duration; $i++)
  • {!! html_entity_decode( link_to( route('program-courses.index', [$srs->encode($program->id), $srs->encode($i)]), $srs->year_level($i) . ' Courses', ), ) !!}
  • @endfor
@endsection @section('scripts') @endsection