@extends('layouts.app')
@push('css')
@endpush
@section('content')
# |
Question |
type |
Action |
{{-- 1 | Are you satisifed with the training? | Yes/No | Mandatory |
2 | Rate this training out of 5? | Multiple Choice | Mandatory |
--}}
@foreach ($questions as $key => $question)
{{ $key + 1}} |
{{ $question->question }} |
@if ($question->type == 1)
Written
@elseif ($question->type == 2)
Likeart
@elseif ($question->type == 3)
Multiple Choice
@elseif ($question->type == 4)
Yes/No
@endif
|
@if($question->is_mandatory==1)
Mandatory |
@else
Delete |
@endif
@endforeach
@endsection
@push('js')
@endpush