@foreach($currentJobsApplicants as $appl)
@if($appl->job_application != null)
@php ($applicant = $appl->job_application)
| {{$applicant->app_first_name}} {{$applicant->app_last_name}} |
{{$applicant->app_email}} |
{{$applicant->app_phone}} |
{{$applicant->app_skills}} |
{{($applicant->app_currency)?$applicant->app_currency->currency:''}} {{$applicant->app_salary}} |
@if($appl->contact == 0)
Not Requested |
@elseif($appl->contact == 1)
Requested |
@elseif($appl->contact == 2)
Shared |
@endif
|
|
@endif
@if($appl->hh_candidates != null)
@php ($hhCand = $appl->hh_candidates)
| {{$hhCand->name}} |
{{$hhCand->email}} |
{{$hhCand->phone}} |
{{$hhCand->skills}} |
{{($hhCand->currency)?$hhCand->currency->currency:''}} {{$hhCand->salary}} |
@if($appl->contact == 0)
Not Requested |
@elseif($appl->contact == 1)
Requested |
@elseif($appl->contact == 2)
Shared |
@endif
|
|
@endif
@if($appl->empCandidate != null)
@php ($empCand = $appl->empCandidate)
| {{$empCand->name}} |
{{$empCand->email}} |
{{$empCand->phone}} |
{{$empCand->skills}} |
{{($empCand->currency)?$empCand->currency->currency:''}} {{$empCand->salary}} |
@if($appl->contact == 0)
Not Requested |
@elseif($appl->contact == 1)
Requested |
@elseif($appl->contact == 2)
Shared |
@endif
|
|
@endif
@endforeach