@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