@extends('admin.layout.app') @section('title', 'Quizzes') @section('content')
| No | Question Text | Type | Course | Unit | Actions |
|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $quiz->question_text }}
@if ($quiz->type == 'mcq')
@foreach ($quiz->options as $opt => $value)
{{ chr(65 + $loop->index) }}.
{{ $value }}
@endforeach
@endif
|
@switch($quiz->type) @case('mcq') MCQ @break @case('tf') T/F @break @case('blank') Blank @break @case('audio') Audio @break @case('matching') Matching @break @default {{ ucfirst($quiz->type) }} @endswitch | {{ $quiz->course->name ?? '-' }} | {{ $quiz->unit->name ?? '-' }} | Edit |