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