@include('layouts.hhHeader')
Progress Timeline for : {{$timeLine->job_title}}

Requisition Date : {{date("M j, Y", strtotime($timeLine->created_at))}}, Estimated Close Date : {{date("M j, Y", strtotime($timeLine->job_end_date))}}, Hiring Manager : {{$timeLine->user->name}}

Assignment Date

{{date("M j, Y", strtotime($timeLine->hhrequest[0]->created_at))}}
@if(count($timeLine->hhsharedcandidates) != 0 || count($timeLine->job_application) != 0)

Candidates

@foreach($timeLine->hhsharedcandidates as $candidate) @if($candidate->hh_candidates->user_id == Auth::user()->id) @php($cmtCount = (new \App\Http\Controllers\JobController())->countCandComment($timeLine->id, $candidate->hh_candidates->id))

{{$candidate->hh_candidates->name}}

{{date("M j, Y", strtotime($candidate->created_at))}}

Comment({{count($cmtCount)}})

@endif @endforeach
@endif @if(count($timeLine->questionnaireHasInvitations) != 0)

Questionnaire Invitation

@foreach($timeLine->questionnaireHasInvitations as $invitation)

{{$invitation->recipient->name}}

Sent on

{{date("M j, Y", strtotime($invitation->created_at))}}
@endforeach
@endif @if(count($timeLine->f2fInterview) != 0)

F2F Interview

@foreach($timeLine->f2fInterview as $f2f)

{{$f2f->applicant_user->name}}

Interview on

{{date("M j, Y", strtotime($f2f->f2fdate))}}
@endforeach
@endif
@include('layouts.footer')