@extends('layouts.app') @section('title', 'Admin Dashboard') @section('nav-items')
  • Dashboard
  • Users
  • Divisions
  • Logos
  • Company Profile
  • Download Requests
  • Marketing Requests
  • Media
  • @endsection @section('styles') @endsection @section('content')

    Admin Dashboard

    Total Users
    {{ $stats['total_users'] }}
    Pending Employees
    {{ $stats['pending_employees'] }}
    @if($stats['pending_employees'] > 0) Review Now → @endif
    Pending Requests
    {{ $stats['pending_requests'] }}
    @if($stats['pending_requests'] > 0) View Requests → @endif
    Pending Media
    {{ $stats['pending_media'] }}
    @if($stats['pending_media'] > 0) Review Media → @endif
    Download Requests
    {{ $stats['pending_download_requests'] }}
    @if($stats['pending_download_requests'] > 0) Review Requests → @endif
    Recent Download Requests
    @if($stats['recent_download_requests']->count() > 0) View All Requests @endif
    Recent Downloads
    @if($stats['recent_downloads']->count() > 5) View All Downloads @endif
    Quick Actions
    Manage Users Manage Divisions Marketing Requests Review Media Download Requests Download Logs
    @endsection