@extends('admin.layouts.app') @section('title', 'Exam Details') @section('content')
{{ $exam->description }}
| Course: | {{ $exam->material->course->title ?? 'N/A' }} |
| Attempts: | {{ $exam->attempts }} |
| Pass Score: | {{ $exam->pass_score }}% |
| Max Score: | {{ $exam->max_score }} |
| Time Limit: | {{ $exam->time_limit }} minutes |
| Correct Answer: | +{{ $exam->mark_correct }} marks |
| Wrong Answer: | {{ $exam->mark_wrong }} marks |
| Shuffle Questions: | @if($exam->shuffle_questions) Yes @else No @endif |
| Shuffle Options: | @if($exam->shuffle_options) Yes @else No @endif |
| Publish Results: | @if($exam->publish_results) Yes @else No @endif |
| Start Time: | {{ \Carbon\Carbon::parse($exam->start_time)->format('d-m-Y, g:i A') }} |
| End Time: | {{ \Carbon\Carbon::parse($exam->end_time)->format('d-m-Y, g:i A') }} |
{{ $examQuestion->question->question_text }}
@if($examQuestion->question->questionOptions->count() > 0)No questions added to this exam yet.
Add QuestionsQuestions
Attempts
Avg Score
Pass Rate