Welcome, {{ auth()->user()->name }}!
This dashboard gives an overview of your training program data — from classrooms to coordinators.
Classrooms
{{ $totalClassrooms ?? 0 }}
Trainers
{{ $totalTrainers ?? 0 }}
Students
{{ $totalStudents ?? 0 }}
Lead Trainers
{{ $totalLeadTrainers ?? 0 }}
Coordinators
{{ $totalCoordinators ?? 0 }}
Venues
{{ $totalVenues ?? 0 }}
@php
$cards = [
['title' => 'Classrooms', 'text' => 'Create and manage classrooms by county, sub-county, and venue.', 'route' => 'classrooms.index'],
['title' => 'Assign Trainers', 'text' => 'Assign trainers to classes with rate, duration, and payment info.', 'route' => 'trainers.index'],
['title' => 'Assign Students', 'text' => 'Register and assign students to classrooms with tracking.', 'route' => 'assignments.index'],
['title' => 'Lead Trainers', 'text' => 'Assign and manage lead trainers per center.', 'route' => 'lead_trainers.index'],
['title' => 'Centre Coordinators', 'text' => 'Manage assigned coordinators for each venue and sub-county.', 'route' => 'centre_coordinators.index'],
['title' => 'Trainees', 'text' => 'View and verify trainee registrations and training progress.', 'route' => 'students.index'],
];
@endphp
@foreach($cards as $card)
{{ $card['title'] }}
{{ $card['text'] }}
Go
@endforeach