{{-- Layout --}} @extends('student.layout.layout') {{-- Page Title --}} @section('title','GAS LMS | Start Quiz') {{-- Breadcrumb section --}} @section('breadcrumb') @include('components._breadcrumb', ['items' => ['Quiz' => route('student.course.quiz.index',$coffid)]]) @endsection {{-- Content --}} @section('content')
Course Name {{$course_name->acyname.'_'.$course_name->cname}} {{$course_name->lshort_name}} {{$course_name->has_lable ? '( '.$course_name->label.' )' : ''}}
{{-- time limit: {{$quiz->time_limit}} minuts --}}
@if ($quiz->instructions) Instructions {{$quiz->instructions}} @endif
{{ Carbon\Carbon::parse($student_quiz->attempt_start_date)->format('F') }} {{ Carbon\Carbon::parse($student_quiz->attempt_start_date)->format('d, Y') }} / ({{date('h:i A', strtotime($student_quiz->attempt_start_time))}})
Start date
{{ Carbon\Carbon::parse($student_quiz->attempt_end_date)->format('F') }} {{ Carbon\Carbon::parse($student_quiz->attempt_end_date)->format('d, Y') }} / ({{date('h:i A', strtotime($student_quiz->attempt_end_time))}})
End date
{{ $student_quiz->attempts_remainder }}
attempts
Started
@csrf
@endsection @section('js') {{-- confirm alert --}} @endsection