@extends('layouts.instructor') @section('title', 'Performance') @section('content') {{-- TOP BAR --}} {{-- PAGE TITLE --}} {{-- COURSES PERFORMANCE --}}

Course performance

@if($courses->isNotEmpty())
@foreach($courses as $course) @endforeach
Course Enrollments Reviews Avg Rating Actions
{{ $course->title }}
{{ $course->category->name ?? 'General' }}
{{ number_format($course->enrollments_count) }}
{{ number_format($course->reviews_count) }}
{{ round($course->reviews_avg_rating, 1) ?? 'N/A' }}
@else

Belum ada kursus

Buat kursus pertama Anda untuk melihat metrik performa.

Create Course
@endif
@endsection