@extends('layouts.admin') @section('title', 'Detail Hasil Ujian') @section('content') {{-- HEADER --}}

Detail Hasil Ujian

{{-- ACTION BUTTON --}}
{{-- ================= SUMMARY ================= --}}
Peserta
{{ $attempt->simper->manpower->name ?? '-' }}
NIK
{{ $attempt->simper->manpower->nik ?? '-' }}
SIMPER
{{ $attempt->simper->code ?? '-' }}
Score
{{ number_format($attempt->score, 2) }}
Benar
{{ $attempt->correct_answers }}
Status
@if($attempt->is_passed) LULUS @else TIDAK LULUS @endif
Waktu
{{ $attempt->finished_at }}
{{-- ================= DETAIL JAWABAN ================= --}}
Review Jawaban
@foreach($attempt->answers as $index => $answer) @php $question = $answer->question; @endphp
{{ $index + 1 }}. {!! nl2br(e($question->question)) !!}
@if($question->type === 'multiple_choice') @foreach($question->options as $opt)
@endforeach
@if($answer->is_correct) BENAR @else SALAH @endif
@endif @if($question->type === 'essay_auto')
Jawaban:
{{ $answer->essay_answer }}
Score: {{ $answer->score }}
@endif
@endforeach
@endsection