Admin Panel
Welcome, {{ auth()->user()->name ?? 'Admin' }}
@csrf
Logout
Super Admin Dashboard
Total Users
{{ $total_users }}
New Today: {{ $new_users_today }}
Total Courses
{{ $total_courses }}
Active: {{ $active_courses }}
Enrollments
{{ $total_enrollments }}
Today: {{ $enrollments_today }}
Total Revenue
₹{{ number_format($total_revenue) }}
Today: ₹{{ number_format($revenue_today) }}
Internships
{{ $total_internships }}
Active: {{ $active_internships }}
Applications
{{ $total_applications }}
Today: {{ $applications_today }}
Pending Payments
{{ $pending_payments }}
Month Revenue: ₹{{ number_format($revenue_month) }}
Inquiries
{{ $total_inquiries }}
New Today: {{ $new_inquiries_today }}
Recent Users
Name
Email
Role
Status
Joined
@forelse($recent_users as $user)
{{ $user->name }}
{{ $user->email }}
{{ $user->role_name ?? 'N/A' }}
@if($user->status == 1)
Active
@else
Inactive
@endif
{{ \Carbon\Carbon::parse($user->created_at)->format('d M Y') }}
@empty
No recent users found.
@endforelse
System Information
PHP:
{{ $php_version }}
Laravel:
{{ $laravel_version }}
Environment:
{{ $environment }}
Database:
{{ $database }}