@extends('../layout/' . $layout) @section('subhead') Atarud MIS - Exam Report By Students @endsection @section('subcontent')

Exam Report By Students

Report Filters

Report Content

@if(isset($fromDate) && isset($toDate))
{{-- --}}
@endif
@if(isset($studentExam))

Exams

@foreach($studentExam as $row) @php $exam = App\Models\Exam::where('id', $row->exam_id)->first(); $course = App\Models\Course::where('id', $row->course_id)->first(); $student = App\Models\Student::where('id', $row->student_id)->first(); @endphp @endforeach
# Name Father Name Title Course Date
{{++$loop->index}} {{$student != null ? $student->name : ''}} {{$student != null ? $student->father_name : ''}} {{$exam != null ? $exam->title : ''}} {{$course != null ? $course->title : ''}} {{$exam != null ? $exam->exam_date : ''}}
Total Exam {{count($studentExam)}}
@endif
@endsection @section('script') @endsection