@extends('candidate.layouts.master') @section('page-title'){{$page}}@endsection @section('content')

{{ __('message.account') }} > {{ __('message.quizes') }}

@if ($quizes) @foreach ($quizes as $q) @php $d = objToArr(json_decode($q['quiz_data'])); @endphp

{{ $d['quiz']['title'] }}{{ $q['job_title'] ? ' : '.$q['job_title'] : ''; }}

{!! $d['quiz']['description'] !!}

{{ __('message.allowed_time') }} {{ $q['allowed_time'] }} minutes
{{ __('message.questions') }} {{ $q['total_questions'] }}
{{ __('message.result') }} @if($q['attempt'] > 0) {{ $q['total_questions'] != 0 ? round(($q['correct_answers']/$q['total_questions'])*100).'%' : ''; }} @else {{ __('message.n_a') }} @endif
@endforeach @else @endif
{!! $pagination !!}
@endsection