@extends('../student_layout/' . $layout) @section('subhead') Atarud MIS - {{ Auth::guard('student')->user()->name }} Student Attendance Class Base Report @endsection @section('subcontent')

{{ Auth::guard('student')->user()->name }} Exams Report

{{--
--}}
@if(isset($questions))

Exam: {{$exam->title}} --- Course: {{$course->title}} --- Exam Time: {{$exam->exam_time}} --- Total Marks: {{$exam->total_marks}} --- Passing Marks: {{$exam->passing_marks}}

@foreach($questions as $row) @php $question = App\Models\QuestionBank::where('id',$row->question_id) ->first(); $questionName = $question != null ? $question->question : ''; @endphp @endforeach
# Question Answer
{{++$loop->index}} {{$questionName}} {{$row->answer}}
@endif
@endsection @section('script') @endsection