@extends('layouts.app') @section('content') @include('common/dashboard-top-nav')
@if(session('student_img_url')) @else @endif
{{ session('student_name') }}
{{ session('student_id') }}
Class- {{ session('class_row_id') }}
{{ session('institution') }} {{ session('address') }}
Total Exam
@if(isset($student_exam_profile['total_exam'])) {{ $student_exam_profile['total_exam'] }} @endif
Exam Taken
@if(isset($student_exam_profile['total_taken_exam'])) {{ $student_exam_profile['total_taken_exam'] }} @endif
Not Taken
@if(isset($student_exam_profile['total_not_taken_exam'])) {{ $student_exam_profile['total_not_taken_exam'] }} @endif
@if(isset($student_exam_profile['total_percentage']))
{{ $student_exam_profile['total_percentage'] }}%
@endif
Instructions

Please verify that you have correctly logged in and relevant information appear correctly in the right –top corner of the monitor. The following table includes the test name, test marks, duration and other informative features. You have to attempt all the tests according to the following list. To begin the exam click the start button. No electronic device can be used. For any rough work you will be provided with paper and pencil.

@foreach($exam_list as $data) @if($data->is_psychology == 0) @else @endif @endforeach
# Exam Title Topic Type Difficulty Level Total Quesions Total Time Total Marks Status
{{ $count }} {{ $data->exam_name }} {{ $data->categoryname }} MCQ @if($data->question_level == 1) {{ 'Foundation' }} @elseif($data->question_level == 2) {{ 'Intermediate' }} @elseif($data->question_level == 3) {{ 'Advance' }} @else {{ 'Standard' }} @endif {{ $data->numberQuestion }} {{ $data->examTime }} Minutes {{ $data->numberQuestion }} @if(in_array($data->exam_row_id, $completed_exam_list)) Results @else Start @endif
{{ $count }} {{ $data->exam_name }} {{ $data->categoryname }} MCQ {{ 'Standard' }} {{ $data->numberQuestion }} {{ $data->examTime }} Minutes {{ $data->numberQuestion }} @if(in_array($data->exam_row_id, $completed_exam_list)) Results @else Start @endif
@endsection