@foreach ($quiz->questions as $question)
@if ($question->question_type == 'multiple_choice')
@php
$options = json_decode($question->options);
@endphp
@elseif ($question->question_type == 'single_choice')
@php
$options = json_decode($question->options);
@endphp
@elseif ($question->question_type == 'binary')
@php
$options = json_decode($question->options);
@endphp
@endif
@endforeach