@extends('backend.layout.app') @section('content')

LMS Dashboard Overview

Total Students

{{ $totalStudent }}

Total Courses

{{ $totalCourse }}

Active Instructors

{{ $instructors }}

Enrollments

{{ $totalEnrollment }}

Sub Admin

{{ $totalSubAdmin }}

Enrollment Growth
Top 5 Courses
Revenue Growth
Recent Enrollments
    @forelse($recentEnrollments as $enroll)
  • {{ $enroll->user->name }} enrolled in {{ $enroll->course->title }} ({{ $enroll->created_at->diffForHumans() }})
  • @empty
  • No recent enrollments.
  • @endforelse
Recent Notifications
    @forelse($recentNotifications as $notify)
  • {{ $notify->message }} ({{ $notify->created_at->diffForHumans() }})
  • @empty
  • No notifications.
  • @endforelse
@endsection