{{--
--}}
{{-- --}}
Dashboard
Total enrollments
@if(isset($totalEnrollments ))
{{ $totalEnrollments ?? 0 }}
@endif
Total revenue
@if(isset($totalRevenue ))
${{ number_format($totalRevenue, 2) }}
@endif
Current enrollees
@if(isset($currentEnrollments ))
{{ $currentEnrollments ?? 0 }}
@endif
Course completion
{{ $overallUserCompletionPercent ?? 0 }}%
@foreach($courseData as $course)
@if(isset($course->course_name))
@endif
@endforeach
@php
$image = $course->image ?? null;
$hasThumbnail = !empty($image) && File::exists(storage_path('app/public/course_images/' . $image));
$courseId = $course->id;
$courseRevenue = $courserevenueIndexed[$courseId] ?? null;
$membersCount = $courseRevenue->total_enrollments ?? 0;
$totalSales = $courseRevenue->total_revenue ?? 0;
@endphp