@extends('layouts.app') @section('title',$programme->code) @section('page-title',$programme->code.' ยท '.$programme->name) @section('page-description','Programme overview and linked Table 4 syllabus records.') @section('page-badge', ucfirst($programme->status)) @section('actions') Programmes Edit Add Table 4 @endsection @section('content')
{{ $programme->code }}Programme code
{{ $programme->mqf_level ?: 'โ€”' }}MQF level
{{ $programme->total_credits ?: 'โ€”' }}Total credits
{{ $programme->syllabi->count() }}Linked Table 4 records

Programme Information

Academic identity and faculty details.

{{ $programme->name }}
{{ $programme->faculty }}
{{ $programme->level }}
{{ ucfirst($programme->status) }}
{{ $programme->created_at?->format('d M Y') ?? 'โ€”' }}
@if($programme->description)
{{ $programme->description }}
@endif

Quick Actions

Common programme tasks.

Table 4 / Syllabus

Modules currently shared with or assigned to this programme.

{{ $programme->syllabi->count() }} records
@forelse($programme->syllabi as $s) @empty @endforelse
CourseLecturerVersionStatusActions
{{ $s->course_code }}{{ $s->course_name }} {{ $s->lecturer?->name ?? 'Unassigned' }} v{{ $s->version_no }} {{ ucfirst($s->status) }} View
No Table 4 records yetCreate the first syllabus record for this programme.
@endsection