Assessment results

@if($default_assessment)
thumbnail)}}" class="object-cover object-center h-full w-full rounded-md" width="125px" height="79px">

{{$default_assessment->title}}

@if($default_assessment->provider) By {{ $default_assessment->provider->title}} @else By Long Term Futures @endif @if($default_assessment->subject) • {{$default_assessment->subject->title}} @endif

@if($assesment && $assesment->passed) You passed the assessment with {{$assesment->points}}/100 Score @else @endif
    @foreach ($default_assessment->questions as $question)
  • {{$loop->iteration}}. {{$question->title}}
  • @foreach ($question->answers as $answer)
    @if(isset($answers[$question->id]) && $answers[$question->id] == $answer->id && $answer->is_correct) Correct @elseif(isset($answers[$question->id]) && $answers[$question->id] == $answer->id &&!$answer->is_correct) Incorrect @elseif(!isset($answers[$question->id]) && $loop->last) Not answared @endif
    @endforeach
    @endforeach
Close
@endif