@extends('layout.default') @section('content') @section('page_toolbar') Back @endsection @if ($errors->any())
Question | {!! $question->question !!} |
Options |
@foreach($options as $key=>$option)
|
Answer | {{ $answer }} |
Answer | @foreach($answer as $key=>$ans) @if($ans!='') Option {{ $key }} @endif @endforeach |
Blank Answer {{$key}} | {{ $value }} |
Difficulty Level | {!! ucwords($question->difficulty_level) !!} |
Mark | {!! $question->mark !!} |
Question Mode | {!! ucwords($question->question_mode) !!} |
Category | @php $cat = explode(',',$question->category); $str = ''; @endphp @if((in_array(1,$cat))) @php $str = 'Key Word Test'; @endphp @endif @if((in_array(2,$cat))) @if($str!= '') @php $str .= ', '; @endphp @endif @php $str .= 'Formula Practice'; @endphp @endif @if((in_array(3,$cat))) @if($str!= '') @php $str .= ', '; @endphp @endif @php $str .= 'Converting Units'; @endphp @endif @if((in_array(4,$cat))) @if($str!= '') @php $str .= ', '; @endphp @endif @php $str .= 'Quiz Questions'; @endphp @endif{{ $str }} |