@extends('layouts.app') @section('content')
{{-- Header --}}

👩‍🏫 Class: {{ $classroom->class_number ?? 'N/A' }}

Center: {{ $classroom->center->name ?? 'Not Assigned' }}

← Back to Dashboard
{{-- Summary Cards --}}
Total Trainees

{{ $classroom->trainees->count() }}

{{-- Trainee Table --}}
Trainees List
@if($classroom->trainees->isEmpty())

No trainees assigned to this class yet.

@else
@foreach($classroom->trainees as $index => $trainee) @endforeach
# Name Email Phone Actions
{{ $index + 1 }} {{ $trainee->name }} {{ $trainee->email }} {{ $trainee->phone ?? 'N/A' }} View Attendance
@endif
@endsection