@include('layouts.talentHeader')
Profile View
Candidate
Skills
Profile View
Profile Download
View
@php($name = '') @php($skill = '') @foreach($profileView as $profile) @if($profile->type == 'APP') @php($candProfile = App\JobApplication::where('id', $profile->candidate_id)->first()) @php($name = $candProfile->app_first_name.' '.$candProfile->app_last_name) @php($skill = $candProfile->app_skills) @elseif($profile->type == 'FRL') @php($candProfile = App\HhCandidates::where('id', $profile->candidate_id)->first()) @php($name = $candProfile->name) @php($skill = $candProfile->skills) @elseif($profile->type == 'EMP') @php($candProfile = App\EmpCandidate::where('id', $profile->candidate_id)->first()) @php($name = $candProfile->name) @php($skill = $candProfile->skills) @endif
{{$name}}
{{$skill}}
{{$profile->count_view}}
{{$profile->count_download}}
View Count
@endforeach
@include('layouts.footer')