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