@extends('layouts.landing') @section('title', 'Elearning Quiz') @section('content') @php $score = $third_percentage ? $third_percentage : ($second_percentage ? $second_percentage : ($first_percentage ? $first_percentage : 0)); @endphp
Back
{{$test->title}}
{{$test->timer == 1 ? $test->timer. ' min' : $test->timer. ' mins'}} - {{$question_count == 1 ? $question_count. ' question' : $question_count. ' questions'}}
Pass Mark @include('elements.progress')
Your score @include('elements.progress-0')
@if($third_percentage) @if($third_percentage < 60) Maximum limit reached @else Test completed @endif @elseif($second_percentage) @if($second_percentage < 60) Retake Test @else Test completed @endif @elseif($first_percentage) @if($first_percentage < 60) Retake Test @else Test completed @endif @else Start Test @endif
@if($third_percentage) @if($third_percentage < 60)

You need a minimum of 60% to successfully complete this course

@else

Congratulations, you have successfully completed this course!

@if(@$certificate->is_active == 1) Download certificate @endif Review this course
@endif @elseif($second_percentage) @if($second_percentage < 60)

You need a minimum of 60% to successfully complete this course

@else

Congratulations, you have successfully completed this course!

@if(@$certificate->is_active == 1) Download certificate @endif Review this course
@endif @elseif($first_percentage) @if($first_percentage < 60)

You need a minimum of 60% to successfully complete this course

@else

Congratulations, you have successfully completed this course!

@if(@$certificate->is_active == 1) Download certificate @endif Review this course
@endif @endif
@include('elements.add-review') @endsection