@extends('layouts.app') @section('content')
Course Details

ID: {{ $course->id }}

Title: {{ $course->title }}

Category: {{ $course->category?->name }}

Teacher: {{ $course->teacher?->name }}

Status: {{ ucfirst($course->status) }}

Start Date: {{ $course->start_date?->format('Y-m-d') ?? 'N/A' }}

Expire Date: {{ $course->expire_date?->format('Y-m-d') ?? 'N/A' }}

Course Window: @if($course->isExpired()) Expired @elseif($course->isWithinScheduledWindow()) Active @else Upcoming @endif

Description: {{ $course->description }}

Back
@endsection