@extends('admin.layouts.app') @section('content') {{ show_window_title($page_title) }}

Course Details

Back to Courses

{{ $course->title }}

{{ $course->description }}

Course Information
Slug: {{ $course->slug }}
Type: @if($course->type === 'structured') Structured @else Direct @endif
Status: @if ($course->status === 'published') Published @elseif ($course->status === 'draft') Draft @else Archived @endif
Program: {{ $course->program ? $course->program->title : 'No Program' }}
Category: {{ $course->category ? $course->category->title : 'No Category' }}
Sort Order: {{ $course->sort_order }}
@if($course->banner_video)
Banner Video
@endif @if($course->features)
Features
{{ json_encode($course->features, JSON_PRETTY_PRINT) }}
@endif
@if($course->thumbnail_url)
Thumbnail
Course Thumbnail @endif @if($course->banner_image_url)
Banner Image
Course Banner @endif
@endsection