PREVIEW MODE
Question Preview
@for($i = 0; $i < 5; $i++) @endfor
Question 1 of 1
@if($question->question_image) Question @endif
{!! $question->question !!}
@if($question->type_id == 1) @php $options = [ ['text' => $question->answer0, 'image' => $question->answer0_image, 'index' => 0], ['text' => $question->answer1, 'image' => $question->answer1_image, 'index' => 1], ['text' => $question->answer2, 'image' => $question->answer2_image, 'index' => 2], ['text' => $question->answer3, 'image' => $question->answer3_image, 'index' => 3], ]; $validOptions = array_filter($options, fn($o) => !empty($o['text']) || !empty($o['image'])); @endphp @foreach($validOptions as $option)
@if($option['image']) Option @endif
{!! $option['text'] !!}
@endforeach @else
@foreach(['1','2','3','⌫','4','5','6',':','7','8','9','.'] as $key) @endforeach
@endif