@extends('../student_layout/' . $layout) @section('subhead') Atarud MIS - Show Exam @endsection @section('subcontent')

Show Exam : {{ $exam->title }} ( {{ $course->title }})

@php $c = 0; @endphp @foreach($answers as $a) @php ++$c; $q = App\Models\QuestionBank::where('id', $a->question_id)->first(); @endphp
Question {{ $c}}: {{ $q != null ? $q->question : '' }}
@if($q->file != null) @endif
Answer: {{ $a->answer }}
@endforeach
Result: {{ $mark != null ? $mark->result.' ('.$mark->mark_obtained.')' : '' }}
@endsection