@extends('layouts.dashboard') @section('title', $program->name) @section('page-content')
Programs / {{ $program->code }}

{{ $program->name }}

{{ $program->code }}

@can('manage-programs') Edit Program @endcan

Program Information

{{ $program->code }}

{{ $program->name }}

{{ $program->department->name ?? 'N/A' }}

{{ $program->degree_type }}

{{ $program->duration_years }} {{ Str::plural('Year', $program->duration_years) }}

{{ $program->total_credits }}

{{ $program->is_active ? 'Active' : 'Inactive' }}
@if($program->description)

{{ $program->description }}

@endif
@if($program->courses->count() > 0)

Courses ({{ $program->courses->count() }})

@foreach($program->courses as $course) @endforeach
Code Name Credits Type
{{ $course->code }} {{ $course->name }} {{ $course->credit_hours }} {{ str_replace('_', ' ', $course->course_type) }}
@endif @endsection