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

{{ $center->name ?? 'Center' }} - Trainees

{{-- Search Form --}}
{{-- Trainees Table --}}
@forelse($trainees as $trainee) @empty @endforelse
# Name Mentor Average Score Status Actions
{{ $loop->iteration + ($trainees->currentPage() - 1) * $trainees->perPage() }} {{ $trainee->name }} {{ optional($trainee->mentor)->name ?? '-' }} {{ round(optional($trainee->performances)->avg('score') ?? 0, 1) }}% @if(optional($trainee->performances)->where('status', 'completed')->count() > 0) Active @else Pending @endif View Report PDF Excel
No trainees found
{{-- Pagination --}}
{{ $trainees->links() }}
@endsection