Answer the questions that follow to test your understanding of the process. Remember that you can refer to the previous lesson items if required. 

@php $time = explode(':', $assignData->due_time); $currentDate = \Carbon\Carbon::now()->format('Y-m-d'); @endphp @if ($assignData->due_date >= $currentDate && !$canAttempt)
{{ $assignData->due_time }}
@csrf @php $questionNumber = 1; @endphp @if (isset($quezeQuestions)) @foreach ($quezeQuestions as $item)

{{ $questionNumber }}. {!! $item->question !!}

@php $options = $item->option; $arrayOptions = explode(',', $options); @endphp @foreach ($arrayOptions as $index => $option)
@endforeach

{{ $assignData->marks }}

@php $questionNumber++; @endphp @endforeach @endif @if (isset($shortQuestions)) @php $i = 1; @endphp @foreach ($shortQuestions as $index => $datas)

{{ $i++ }}. {!! $datas->question !!}

{{ $assignData->marks }} point

@endforeach @endif
@elseif ($canAttempt)

You have exceeded the maximum number of attempts for this quiz.

@else

Quize Date is expire

@endif