HASIL UJIAN SIMPER
Laporan Hasil Ujian Peserta
{{-- INFO PESERTA --}}
Nama:
{{ $attempt->simper->manpower->name }}
NIK:
{{ $attempt->simper->manpower->nik }}
SIMPER:
{{ $attempt->simper->code }}
Status:
@if($attempt->is_passed)
LULUS
@else
TIDAK LULUS
@endif
{{-- RINGKASAN --}}
Score:
{{ number_format($attempt->score, 2) }}
Jawaban Benar:
{{ $attempt->correct_answers }}
{{-- SOAL (ringkas biar 1 halaman) --}}
Ringkasan Jawaban
No
Soal
Status
Score
@foreach($attempt->answers as $i => $answer)
{{ $i + 1 }}
{{ \Illuminate\Support\Str::limit($answer->question->question, 60) }}
@if($answer->is_correct) BENAR @else SALAH @endif
{{ $answer->score }}
@endforeach