@extends('../layout/' . $layout) @section('subhead') Atarud MIS - Exams Question Setting List @endsection @section('subcontent')

Exams Question Setting List

Add
@foreach($exams as $exam) @php $setting = App\Models\ExamSetting::where('id',$exam->exam_setting_id)->first(); $examType = App\Models\ExamType::where('id',$exam->exam_type_id)->first(); @endphp @endforeach
# Exam Setting Exam Type Multi Choice True and False Open Actions
{{ ++$loop->index }} {{ $setting != null ? $setting->title : '' }} {{ $examType != null ? $examType->name : '' }} {{ $exam->multi_choice }} {{ $exam->true_false }} {{ $exam->open }}
{{-- --}}
@include('../pages/exam_question_setting/create') @include('../pages/exam_question_setting/delete') @endsection @section('script') @endsection