@include('layouts.header')
Candidate List
@foreach($candidates as $candidate) @endforeach
Candidate Name User ID Phone Email
{{$candidate->name}} {{$candidate->employee_id}} @php($jPhone = \App\JobApplication::where(['applicant_user_id' => $candidate->id])->first()) @php($hPhone = \App\HhCandidates::where(['applicant_user_id' => $candidate->id])->first()) @php($ePhone = \App\EmpCandidate::where(['applicant_user_id' => $candidate->id])->first()) @if($jPhone) {{$jPhone->app_phone}} @elseif($hPhone) {{$hPhone->phone}} @elseif($ePhone) {{$ePhone->phone}} @endif {{$candidate->email}}
@include('layouts.footer')