@extends('student-panel.partials.master') @section('title') {{ ___('common.Online Exam View') }} @endsection @section('content')

{{ setting('application_name') }}

{{ setting('address') }}

@if (@$data->type)
{{___('online-examination.Exam Type')}} :
{{ @$data->type->name }}
@endif
{{___('online-examination.Exam Name')}} :
{{ @$data->name }}
@if (@$data->subject)
{{___('online-examination.Subject Name')}} :
{{ @$data->subject->name }}
{{___('online-examination.Subject Code')}} :
{{ @$data->subject->code }}
@endif
{{___('online-examination.Last')}} :
{{___('online-examination.Time')}} :

Deprecated: DateTime::__construct(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/uxvsuhne/public_html/chaabi.me/resources/views/student-panel/online-exam-view.blade.php on line 636

Deprecated: DateTime::__construct(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/uxvsuhne/public_html/chaabi.me/resources/views/student-panel/online-exam-view.blade.php on line 637
0 Day 0 Hour 0 Minute
{{___('online-examination.Exam Question/Answer sheet')}}
@csrf @foreach (@$data->examQuestions as $key=>$item)
{{ ++$key }}. {{ $item->question->question }}
{{ $item->question->mark }}
@if ($item->question->type == 1) @for($i = 0; $i < $item->question->total_option; $i++)
@endfor @elseif ($item->question->type == 2) @for($i = 0; $i < $item->question->total_option; $i++)
@endfor @elseif($item->question->type == 3)
@else @endif @endforeach
@endsection @push('script') @endpush