@extends('layouts.app') @section('content')
Summary of progress, performance, and trainee insights.
{{ $card['value'] }}{{ $card['suffix'] ?? '' }}
No summary data available for this user yet.
@endif {{-- =========================== TRAINEE MODULE PROGRESS ============================ --}} @if($user->role === 'trainee')| # | Module Title | Status | Score | Grade | Comments | Date | Progress |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $activity['title'] }} | {{ ucfirst($activity['status'] ?? 'N/A') }} | {{ $activity['score'] ?? 'N/A' }} | {{ $activity['grade'] ?? 'N/A' }} | {{ $activity['comments'] ?? '-' }} | {{ $activity['date'] ?? '-' }} |
|
No modules recorded for this trainee yet.
@endif @endif {{-- =========================== TRAINER / LEAD TRAINER REPORT ============================ --}} @if(in_array($user->role, ['trainer', 'lead_trainer']))| # | Trainee Name | Average Score | Completed Modules | Overall Progress |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $trainee->name }} | {{ round($trainee->performances->avg('score') ?? 0,1) }}% | {{ $completed }} |
|
No trainees assigned yet.
@endif @endif