@extends('candidate::layouts.master') @section('pagetitle','Manage Interview') @section('content')
@if($completion != '3') @if(session('runtest')=='')
@endif @endif
Interviewing for {{ucfirst($position->name)}}
@if(isset($questions_det)) @foreach($questions_det as $key => $question)

Question {{$key+1}}:

@if($question['attempt_exist'])
@endif

{{$question['question']}}

Attempts

{{$question['attempt_left']}}

Time Limit

{{numTimeFormatToAlpha($question['max_time'])}}
@if($question['record_file'] != '') @if(file_exists(public_path(Config::get('constants.CANDIDVIDEO_STORAGE_PATH')).$question['employer_id'].'/'.$question['record_file']))
@else
{{Str::upper('Video Deleted')}}
@endif @else
{{Str::upper('UnAnswered')}}
@endif
@if($completion != '3') @endif
@endforeach @endif @if($qcompleted && $completion != '3')
@endif
@endsection @section('scripts') @endsection