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

👥 Deputy Lead Trainers

{{-- Summary Card --}}
Total Deputy Lead Trainers

{{ $totalDeputyLeadTrainers }}

{{-- Filters --}}
{{-- Deputy Lead Trainers Table --}} @if($deputyLeadTrainers->isEmpty())
No deputy lead trainers found.
@else
@foreach($deputyLeadTrainers as $trainer) @endforeach
# Name ID Number Email Phone Center Joined At Last Updated Actions
{{ $loop->iteration }} {{ $trainer->name }} {{ $trainer->id_number }} {{ $trainer->email ?? '-' }} {{ $trainer->phone ?? '-' }} {{ $trainer->center?->name ?? '-' }} {{ $trainer->created_at->format('d M Y') }} {{ $trainer->updated_at->format('d M Y') }} View
@endif {{-- Footer --}}
NYOTA System © {{ date('Y') }}
@endsection @section('scripts') @endsection