@extends('layouts.admin') @section('title', 'Programmes') @section('content')

All Programmes

Add Programme
@if(session('success'))
{{ session('success') }}
@endif
@foreach($programmes as $programme) @endforeach @if($programmes->isEmpty()) @endif
Code Description Credits Duration Attendance Mode Status Actions
{{ $programme->programme_code }} {{ $programme->description }} {{ $programme->total_credits }} {{ $programme->duration }} {{ $programme->attendance_mode }} {{ ucfirst($programme->status) }}
@csrf @method('DELETE')
No programmes found.
@endsection