@extends('layouts.app') @section('content')
| # | 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 | |||||