@php $inputType = $question['question_type'] == 'multiple-choice' ? 'checkbox' : 'radio'; $answers = []; $questionScore = $question['question_score'] ?? null; @endphp @foreach ($question['question_answers'] as $questionAnswer) @php $answers[] = $questionAnswer['correct'] == 1 ? $questionAnswer['answer']['name'] : ''; @endphp
  • @endforeach @if ($disabled == 'disabled') @php reset($answers); @endphp @endif