@extends('layouts.master') @section('content') @if ($message = Session::get('success'))
Status
| Question | Type | Action |
|---|---|---|
{{ $question->question }} |
{{($question->question_type == 1 ? 'MCQS' : ($question->question_type == 2 ? 'True/False' : ($question->question_type == 3 ? 'Blanks' : '')))}} |
{!! Form::open(['method'=>'DELETE',
'route' => ['deleteQuestion', $question->question_id,$question->quiz_id],'class'=>'form-horizontal',
'onsubmit' => 'return confirm("Are You Sure to delete this question?")'])!!}
{!! Form::close() !!}
|