Time *
@php
$start=strtotime('00:00');
$end=strtotime('23:30');
@endphp
Timezone *
@php
$timeZones = timeZoneList();
$selectedValue = array_search("Asia/Kolkata", $timeZones);
if($record){
$selectedValue = $record->interview_timezone;
}
@endphp
Duration (in mins) *
@php
$start=strtotime('00:15');
$end=strtotime('10:00');
@endphp
Interviewer *
Job Applications *
{!! Form::radio('interview_status', "Scheduled", ($record) ? $record->status : null, array('id' => 'interviewScheduled')) !!}
{!! Form::radio('interview_status', "Completed", ($record) ? $record->completed : null, array('id' => 'interviewCompleted')) !!}
{!! Form::radio('interview_status', "Cancelled", ($record) ? $record->cancelled : null, array('id' => 'interviewCancelled')) !!}