@extends('admin.layout') @section('content')
Subject: {{ $test->subject->name }} | Level: {{ $test->competitionLevel->name ?? 'N/A' }}
| Question | Options | Correct Answer | Points | Difficulty | Time Estimate | Actions |
|---|---|---|---|---|---|---|
|
{{ Str::limit($question->question_text, 100) }}
@if($question->explanation)
{{ Str::limit($question->explanation, 50) }}
@endif
|
@php $options = json_decode($question->options, true); @endphp @if(is_array($options)) {{ count($options) }} options @else N/A @endif | Option {{ $question->correct_answer + 1 }} | {{ $question->points }} | {{ ucfirst($question->difficulty) }} | {{ $question->time_estimate ? $question->time_estimate . 's' : 'N/A' }} | |
| No questions found. | ||||||
{{ $questions->total() }}
{{ $questions->where('difficulty', 'easy')->count() }}
{{ $questions->where('difficulty', 'medium')->count() }}
{{ $questions->where('difficulty', 'hard')->count() }}