{{ $test->title }}

Назад
Информация о тесте
Курс: {{ $test->course->title }}
Вопросов: {{ $test->questions->count() }}
@if($test->passing_score)
Проходной балл: {{ $test->passing_score }}%
@endif
Вопросы
@foreach($test->questions as $index => $question)

{{ $question->question_text }}

@if($question->type === 'multiple_choice')
@foreach($question->answers as $answer)
@endforeach
@endif
@endforeach