@extends('backend.student.layouts.right_side_bar') @section('studentBody')

{{$heading}}

Back
@include('layouts.message')
Exam Details @if(isset($exam->details)) @endif
Title {{$exam->title}} ({{$exam->subject->name}})
Level/Stream {{$exam->level->name}}/{{$exam->stream->name}}
Exam Date Start Date :{{$exam->start_date}}
End Date: {{$exam->end_date}}
Total Question {{count($exam->objectiveQuestions)}} Questions
Marks/Per Question (Default) {{$exam->default_marks}} Point
Time/Per Question (Default) {{$exam->default_time}} Second
Aditional Instruction
{!! $exam->details !!}
College Details
@if(config('filesystems.storage')::disk(config('filesystems.diskName'))->exists(config('filesystems.storagePath').'clients/'.$client->user->name.'/'.$client->logo))
User Image
@endif {{$client->company_name}}
{{$client->district->name}}
{{$client->user->email}}
{{$client->office_contact}}
@if(\App\Model\NewStudentExam::where('student_id',$student->id)->where('exam_id',$exam->id)->where('status','completed')->first())
@elseif($exam->status=='public' && $exam->start_date <= date('Y-m-d H:i') && $exam->end_date >= date('Y-m-d H:i'))
@if(count($exam->objectiveQuestions)>0) Start Exam @else Exam Not Ready Yet ! @endif
Before Start Exam: **Keep in mind that Question set (next page) would be invalid after limited exam time. Try to give Answer in time. @elseif($student->type=='test') Before Start Exam: **Keep in mind that Question set (next page) would be invalid after limited exam time. Try to give Answer in time. @else
Exam Starts in {{----}}
@endif
@endsection @section('after_js') @endsection