@include('quiz::livewire.student.quiz-attempt.answers.components.question-title') @if (!empty($question->options))
    @php $letter = 'A'; if(!empty($question->settings['random_choice'])){ $options = $question?->options?->shuffle(); }else{ $options = $question->options; } @endphp @foreach ($options as $option )
  • @php $letter = chr(ord($letter) + 1); @endphp @endforeach
@endif
@include('quiz::livewire.student.quiz-attempt.answers.components.question-image')