@extends('layouts.app') @section('content')

Rapor Evaluasi Karyawan

Identitas Trainee

{{ $user->first_name }} {{ $user->last_name }}

NIK: {{ $user->nik ?? 'N/A' }}

Total Evaluasi

{{ $stats['total_exams'] }}

Total Lulus

{{ $stats['passed'] }}

Rata-rata Nilai

{{ number_format($stats['avg_score'], 1) }}

Riwayat Sesi Ujian

@forelse($examHistory as $history) @empty @endforelse
Tanggal Ujian ID / Sesi Ujian Skor Akhir Status
{{ $history->created_at->format('d M Y - H:i') }} Exam ID: #{{ $history->exam_id }} {{ $history->score }} @if($history->is_passed) LULUS @else GAGAL @endif
Karyawan ini belum pernah mengikuti evaluasi ujian.
@endsection