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

{{ $course->name }}

{{ $course->code }}

@can('manage-courses') Edit Course @endcan

Course Information

{{ $course->code }}

{{ $course->name }}

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

{{ $course->credit_hours }}

{{ str_replace('_', ' ', $course->course_type) }}

{{ $course->is_active ? 'Active' : 'Inactive' }}
@if($course->lecture_hours)

{{ $course->lecture_hours }}

@endif @if($course->lab_hours)

{{ $course->lab_hours }}

@endif @if($course->tutorial_hours)

{{ $course->tutorial_hours }}

@endif @if($course->max_capacity)

{{ $course->max_capacity }}

@endif
@if($course->description)

{{ $course->description }}

@endif @if($course->learning_outcomes)

{{ $course->learning_outcomes }}

@endif @if($course->syllabus)

{{ $course->syllabus }}

@endif

Additional Information

Created: {{ $course->created_at->format('M d, Y') }}
Last Updated: {{ $course->updated_at->format('M d, Y') }}
@endsection