@extends('admin.layouts.home') @section('title', 'Course Details') @php use Illuminate\Support\Facades\Storage; @endphp @section('content')
{{ $course->category->name ?? 'N/A' }}
| Instructor: | {{ $course->instructor->name ?? 'N/A' }} |
|---|---|
| Category: | {{ $course->category->name ?? 'N/A' }} |
| Level: | {{ ucfirst($course->level) }} |
| Language: | {{ $course->language }} |
| Created On: | {{ $course->created_at->format('M d, Y') }} |
| Last Updated: | {{ $course->updated_at->format('M d, Y') }} |
| Total Students: | {{ $course->total_students ?? 0 }} |
|---|---|
| Total Lessons: | {{ $course->total_lessons ?? 0 }} |
| Total Duration: | {{ $course->total_duration ?? 0 }} minutes |
| Total Reviews: | {{ $course->total_reviews ?? 0 }} |
| Average Rating: | @if($course->average_rating) {{ number_format($course->average_rating, 1) }} @else No ratings yet @endif |
| Enrollments: | {{ $enrollments->total() }} |