@extends('layouts.app') @section('title','Programmes') @section('page-title','Programmes') @section('page-description','Manage programme profiles and the Table 4 modules linked to each programme.') @section('page-badge', $programmeStats['total'].' total') @section('actions') Template Export CSV Import CSV New Programme @endsection @section('content')
{{ $programmeStats['total'] }}Total programmes
{{ $programmeStats['active'] }}Active programmes
{{ $programmeStats['inactive'] }}Inactive programmes
{{ $programmeStats['module_links'] }}Programme-module links
@if(request()->filled('search') || request()->filled('status')) @endif

Programme Directory

Open a programme to review its details and associated syllabus records.

Showing {{ $programmes->firstItem() ?? 0 }}–{{ $programmes->lastItem() ?? 0 }} of {{ $programmes->total() }}
@forelse($programmes as $p) @empty @endforelse
Code Programme Academic Level Table 4 Status Actions
{{ $p->code }} {{ $p->name }} {{ $p->faculty }} {{ $p->level }} {{ $p->mqf_level ? 'MQF '.$p->mqf_level : 'MQF not specified' }}{{ $p->total_credits ? ' · '.$p->total_credits.' credits' : '' }} {{ $p->syllabi_count }} {{ \Illuminate\Support\Str::plural('module', $p->syllabi_count) }} {{ ucfirst($p->status) }} View
No programmes found Try changing the search/filter or create a new programme.
{{ $programmes->links() }}
@endsection