Информация
Тип:{{ $test->type }}
Описание:{{ $test->description ?? '—' }}
Вопросов:{{ $test->questions->count() }}
Время:{{ $test->time_limit_minutes ?? '∞' }} мин
Проходной балл:{{ $test->passing_score }}%
Попыток:{{ $test->max_attempts }}
Перемешивание:@if($test->shuffle_questions)Да@elseНет@endif
Показ ответов:@if($test->show_correct_answers)Да@elseНет@endif
Статус:@if($test->is_active)Активен@elseНе активен@endif
Вопросы
@if($test->questions->count() > 0)
    @foreach($test->questions as $question)
  • {{ $question->type }}
    {{ Str::limit($question->question_text, 50) }}
    {{ $question->answers->count() }}
  • @endforeach
@else

Нет вопросов

@endif