Soal {{ $question->order }}
{{ $question->question_text }}
{{ $question->passage?->title ? 'Passage: ' . $question->passage->title : 'Tanpa passage' }}
@if ($question->section->code === 'listening' && $question->passage?->title)
{{ str($question->passage->title)->before(' ยท')->value() }}
@endif
@if ($question->audio_path)
Audio attached
@endif
@if ($question->section->code === 'listening')
@if ($question->audio_start_seconds !== null && $question->audio_end_seconds !== null)
Cue {{ gmdate('i:s', $question->audio_start_seconds) }}-{{ gmdate('i:s', $question->audio_end_seconds) }}
@else
Cue kosong
@endif
@endif
@foreach ($question->options as $option)
{{ $option->label }}. {{ $option->content }}
@endforeach