@extends('front.beta.layouts.master') @section('breadcrumb') @include('front'.viewPrfx().'partials.breadcrumb') @endsection @section('content')
@include('front'.viewPrfx().'partials.candidates-sidebar')

{{$pagination_overview}}

@if($candidates)
@foreach($candidates as $candidate)
@php $thumb = candidateThumb($candidate['image']); @endphp
@if(employerSession())
@if(in_array($candidate['candidate_id'], $favorites)) @else @endif
@endif
{{trimString($candidate['designation'], 30)}} @if(candidateShow($candidate, 'show_location')) {{$candidate['city'] ? $candidate['city'] : ''}}{{$candidate['country'] ? ', '.$candidate['country'] : ''}} @endif
@if($candidate['skill_titles'] && candidateShow($candidate, 'show_skills')) @if(is_array($candidate['skill_titles'])) @foreach($candidate['skill_titles'] as $st)
{{$st}}
@endforeach @else
{{$candidate['skill_titles']}}
@endif @endif
@if(candidateShow($candidate, 'show_experiences'))
{{$candidate['experiences_count']}}
@endif @if(candidateShow($candidate, 'show_qualifications'))
{{$candidate['qualifications_count']}}
@endif @if(candidateShow($candidate, 'show_skills'))
{{$candidate['skills_count']}}
@endif @if(candidateShow($candidate, 'show_languages'))
{{$candidate['languages_count']}}
@endif @if(candidateShow($candidate, 'show_achievements'))
{{$candidate['achievements_count']}}
@endif
{{$candidate['references_count']}}
@endforeach
@else
{{__('message.no_candidates_found')}}
@endif
{!!$pagination!!}
@endsection