{{ $candidate->name }}
@if (isset($candidate->current_designation))
Designation: {{ $candidate->current_designation ? $candidate->current_designation : 'Unspecified' }}
@endif
@php
$hiddenEmail = explode('@',$candidate->email);
@endphp
Email: xxxxxx@
Mobile: ######{{ substr($candidate->mobile,-4) }}
Resume: {{ $candidate->candidateResume ? 'Yes' : 'No' }}
@if (isset($candidate->job_experience))
Expereince: {{ $candidate->job_experience ? $candidate->job_experience : 'Unspecified' }}
@endif
@if (isset($candidate->city))
Location: {{ $candidate->city }}, {{ $candidate->state }}
@endif
Target Job: {{ $candidate->target_job_title }}
{{-- {{ $candidate }} --}}