@extends('layouts.user-no-nav') @section('page_title', __('Applicants')) @section('styles') {!! Minify::stylesheet([ '/css/pages/my-job-applicants.css', ])->withFullUrl() !!} @stop @section('content')
@include('elements.page-navigation-header',[ 'title' => __('Applicants'), 'points' => [ ['title' => __('Home'), 'route' => route('home')], ['title' => __('Job listings'), 'route' => route('my.jobs.get')], ['title' => __('Applicants')], ], ]) @include('elements.message-alert',['classes'=>'alert-box pt-0 pb-4'])

{{__('All applicants')}}

{{__('Review candidates from every listing in one place.')}}

{{__('View listings')}}
@if(($filters['q'] ?? '') || ($filters['job_id'] ?? '') || $currentStatus || ($filters['has_cv'] ?? false) || ($filters['has_public_profile'] ?? false)) {{__('Clear filters')}} @endif
{{__('All')}} @foreach($statusLabels as $status => $label) {{$label}} @endforeach
@if($applications->count()) @foreach($applications as $application)
{{$application->statusLabel()}} @if($application->appliedDate()) {{__('Applied')}} {{$application->appliedDate()->format('M j, Y')}} @endif
{{$application->candidateDisplayName()}}

{{$application->candidateHeadline($application->publisherProfileLabel())}}

@if($application->job)

{{__('For')}} {{$application->job->title}} ยท {{$application->job->company ? $application->job->company->name : __('Company')}}

@else

{{__('The listing connected to this applicant has been removed.')}}

@endif @if($application->notePreview())

{{__('Note')}}: {{$application->notePreview()}}

@endif
@if($application->job) {{__('Review applicant')}} @endif @if($application->resume_url) {{__('Open CV')}} @endif @if($application->candidateProfile && $application->candidateProfile->isPublic() && $application->candidateProfile->public_slug) {{__('Public profile')}} @endif @if(optional($application->user)->email) {{__('Email')}} @endif
@endforeach
{{ $applications->links() }}
@else

{{($filters['q'] ?? '') || ($filters['job_id'] ?? '') || $currentStatus || ($filters['has_cv'] ?? false) || ($filters['has_public_profile'] ?? false) ? __('No applicants match these filters') : __('No applicants yet')}}

{{($filters['q'] ?? '') || ($filters['job_id'] ?? '') || $currentStatus || ($filters['has_cv'] ?? false) || ($filters['has_public_profile'] ?? false) ? __('Try clearing filters or widening your search.') : __('When candidates apply with JustJobs, they will appear here.')}}

{{($filters['q'] ?? '') || ($filters['job_id'] ?? '') || $currentStatus || ($filters['has_cv'] ?? false) || ($filters['has_public_profile'] ?? false) ? __('Clear filters') : __('Open job listings')}}
@endif
@endsection