@extends('layouts.dashboard') @section('title', 'Programs') @section('page-content')

Programs

Manage academic programs

Add Program
@forelse($programs as $program) @empty @endforelse
Code Name Department Degree Type Duration Actions
{{ $program->code }} {{ $program->name }} {{ $program->department->name }} {{ ucfirst($program->degree_type) }} {{ $program->duration_years }} years Courses View Edit
No programs found
@if($programs->hasPages())
{{ $programs->links() }}
@endif @endsection