@extends('layouts.master', ['title' => 'Job Seeker Dashboard']) @section('content')
| Id | Exam Name | No. of Questions | Max Time Allowed | Marks per question | Time Taken | Remark (If any) | Action |
|---|---|---|---|---|---|---|---|
| {{$loop->iteration}} | {{$exam->examname}} | {{$exam->no_of_questions}} | {{ \Carbon\CarbonInterval::seconds($exam->max_time_allowed)->cascade()->forHumans() }} | {{$exam->marks_per_question}} | {{$examstatus->timeend ? \Carbon\CarbonInterval::seconds($examstatus->timeend - $examstatus->timestart)->cascade()->forHumans() : 'Not Started'}} | {{$examstatus->cancel_reason}} | @if ($examstatus->status == 'inprogress') @elseif(isset($examstatus->status) && $examstatus->status == 'complete') @elseif(isset($examstatus->status) && $examstatus->status == 'inprogress') @else @endif {{-- Start Exam --}} |
| {{$loop->iteration}} | {{$exam->examname}} | {{$exam->no_of_questions}} | {{ \Carbon\CarbonInterval::seconds($exam->max_time_allowed)->cascade()->forHumans() }} | {{$exam->marks_per_question}} | Not Started | Not Started |