@extends('layouts.app') @section('title', 'Super Admin Dashboard | Institution Axis') @section('sidebar-menu') @endsection @section('sidebar-footer')

© 2026 Institution Axis

@endsection @section('breadcrumb') Home / Super Admin Dashboard @endsection @section('navbar-right')
3
@endsection @section('content')

{{ $totalSchools }}

Total Schools

{{ $totalTeachers }}

Teachers

{{ number_format($totalStudents) }}

Students

KES {{ number_format($totalRevenue) }}

Revenue (YTD)

Schools Performance Overview
Recent Schools Added
    @foreach($recentSchools as $school)
  • {{ $school->name }} {{ $school->created_at->diffForHumans() }}
  • @endforeach
Registered Institutions
Manage All Schools
@foreach($recentSchools as $school) @endforeach
# School Name Type Students Status
{{ $loop->iteration }} {{ $school->name }} {{ ucfirst($school->type) }} {{ number_format($school->student_count) }} {{ ucfirst($school->status) }}
@endsection @section('custom-scripts') @endsection