@extends('layouts.master') @section('title', $title) @section('content')

Dashboard

My Recent Calls

@foreach($recent_calls as $rc)

{{isset($rc->candidate->first_name)?$rc->candidate->first_name:''}} {{isset($rc->candidate->last_name)?$rc->candidate->last_name:''}}

{{\Carbon\Carbon::parse($rc->created_at)->format('d-m-y h:i A')}}


@endforeach

My Upcoming Calls

@foreach($upcomingCalls as $uc)

{{$uc->title}}

{{$uc->date}} {{$uc->time}}

@endforeach

My Upcoming Events

@foreach($upcomingEvents as $ue)

{{$ue->title}}

{{$ue->date}} {{$ue->time}}

@endforeach

Hiring Overview

Interview Completed
Placed
Submitted

Recent Hires

@foreach($recent_hires as $rh) @endforeach
Name Company Recruiter Date
{{$rh->Candidate->first_name}} {{$rh->Candidate->last_name}} {{(!empty($rh->joborder->company->company_name))?$rh->joborder->company->company_name: ''}} {{(!empty($rh->joborder->recruiterUser->name))?$rh->joborder->recruiterUser->name: ''}} {{(!empty($rh->updated_at))?\Carbon\Carbon::parse($rh->updated_at)->format('d-m-y h:i A') : ''}}

Important Candidates (Submitted, Interviewing, Offered in Active Job Orders)

@foreach($important_candidates as $ic) @endforeach
First Name Last Name Status Position Company Modified
{{(!empty($ic->Candidate))?$ic->Candidate->first_name: ''}} {{(!empty($ic->Candidate))?$ic->Candidate->last_name: ''}} {{(!empty($ic->candidateStatus))?$ic->candidateStatus->short_description: ''}} {{(!empty($ic->joborder))?$ic->joborder->designation: ''}} {{(!empty($ic->joborder))?$ic->joborder->company->company_name: ''}} {{(!empty($ic->updated_at))?\Carbon\Carbon::parse($ic->updated_at)->format('d-m-y h:i A'): ''}}
@endsection @push('scripts') @endpush