@extends('layouts.master') @section('content')

Candidate Details @if(!empty(count($candidate->getDuplicates)))
    @foreach($candidate->getDuplicates as $duplicate) @include('candidates::partials.duplicate-merge', ['duplicate_id' => $duplicate->old_candidate_id]) @endforeach
@endif

@if($candidate->is_admin_hidden)

This Candidate is hidden. Only CATS Administrators can view it or search for it. To make it visible by the site users, click Here.

@endif
First Name: {{ $candidate->first_name }}
Middle Name: {{ $candidate->middle_name }}
Last Name: {{ $candidate->last_name }}
Email 1: {{ $candidate->email1 }}
Email 2: {{ $candidate->email2 }}
Pan Number: {{ $candidate->pan_number }}
Phone Home: {{ $candidate->phone_home }}
Phone Cell: {{ $candidate->phone_cell }}
Phone Work: {{ $candidate->phone_work }}
Address: {{ $candidate->address }}
City: {{ $candidate->city }}
State: {{ $candidate->state }}
Pincode: {{ $candidate->pincode }}
Key Skills: {{ $candidate->key_skills }}
Owner: {{ !empty($candidate->ownerUser) ? $candidate->ownerUser->name : '' }}
Website: {{ $candidate->website }}
Gender: {{ $candidate->gender }}
Current Employer: {{ $candidate->current_employer }}
Current Pay: {{ $candidate->current_pay }}
Desired Pay: {{ $candidate->desired_pay }}
Best time to Call: {{ $candidate->best_time_to_call }}
Date Available: {{ $candidate->date_available }}
Source: {{ $candidate->source }}
Can Relocate: {{ $candidate->can_relocate == 1 ? 'Yes' : 'No' }}
Misc. Notes: {{ $candidate->notes }}
Upcoming Events Schedule Event
Attachments: Add Attachment @if(!empty($candidate->attachments)) @endif
Tags: Add/Remove Tag {{ !empty($savedTags) ? implode(',', $savedTags) : '' }}

Job Orders for Candidates

@if(!empty($candidate->joborders)) @foreach($candidate->joborders as $pipeline) @if(!empty($pipeline->joborder)) @php $joborder = $pipeline->joborder; @endphp @endif @endforeach
Match Ref. Number Title Company Owner Added Entered By Status Action
{{ $joborder->designation }} {{ !empty($joborder->company) ? $joborder->company->company_name : '' }} {{ !empty($joborder->ownerUser) ? $joborder->ownerUser->name : '' }} {{ convertDateTimeToDate($joborder->created_at) }} {{ !empty($joborder->createdBy) ? $joborder->createdBy->name : '' }} {{ !empty($pipeline->candidateStatus) ? $pipeline->candidateStatus->short_description : ''}} Change Status Delete
@endif
@include('partials.add-attachment-modal', ['attachment_item_id' => $candidate->candidate_id]) @include('joborder::partials.change-pipeline-status') @include('joborder::partials.remove-from-pipeline-modal') @include('candidates::partials.add-candidate-joborder-modal') @include('candidates::partials.assign-tag-modal', ['tags', $tags]) @include('candidates::partials.link-duplicate-candidate-modal') @section('pagejs') @endsection @endsection