{{ $test->title }}
Информация
| Тип: | {{ $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->answers->count() }} @endforeach
Нет вопросов
@endif