Admin Dashboard
Total Students
{{ $total_students }}
Total Staff
{{ $total_staff }}
Total Enrollments
{{ $total_enrollments }}
Total Applications
{{ $total_applications }}
Recent Students
@forelse($recent_students as $student)
{{ $student->name }}
{{ isset($student->created_at) ? date('d M Y', strtotime($student->created_at)) : 'N/A' }}
@empty
No students found
@endforelse
Recent Enrollments
@forelse($recent_enrollments as $enrollment)
Enrollment ID : #{{ $enrollment->id }}
@empty
No enrollments found
@endforelse