@extends('admin.layouts.home') @section('title', 'Course Statistics') @section('content')
| Category Name | Total Courses | Status |
|---|---|---|
| {{ $category->name }} | {{ $category->courses_count }} | {{ $category->is_active ? 'Active' : 'Inactive' }} |
| No categories found | ||
| Course Title | Instructor | Category | Students | Rating | Status |
|---|---|---|---|---|---|
| {{ $popularCourse->title }} | {{ $popularCourse->instructor->name ?? 'N/A' }} | {{ $popularCourse->category->name ?? 'N/A' }} | {{ $popularCourse->total_students ?? 0 }} | @if($popularCourse->average_rating) {{ number_format($popularCourse->average_rating, 1) }} @else No ratings @endif | {{ $popularCourse->is_published ? 'Published' : 'Draft' }} |
| No popular courses found | |||||