@php
$answers = [];
$questionScore = $question['question_score'] ?? null;
@endphp
@foreach ($question['question_answers'] as $questionAnswer)
@php
$answers[] = $questionAnswer['answer']['name'];
@endphp
@endforeach
@if ($disabled == 'disabled')
@php
reset($answers);
@endphp
@endif