@extends('layouts.user-no-nav') @section('page_title', __('Applicants')) @section('styles') {!! Minify::stylesheet([ '/css/pages/my-job-applications.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'), 'route' => route('my.jobs.applicants.index')], ['title' => $job->title], ], ]) @include('elements.message-alert',['classes'=>'alert-box pt-0 pb-4'])

{{$job->company ? $job->company->name : __('Company')}}

{{$job->title}}

{{__('Applicants')}}: {{$job->applications_count}} ยท {{__('Apply clicks')}}: {{$job->applicants_count}}
{{__('All')}} @foreach($statusLabels as $status => $label) {{$label}} @endforeach
@if($applications->count()) @foreach($applications as $application)
{{$application->candidateDisplayName()}}

{{$application->candidateHeadline()}}

{{$application->statusLabel()}}
{{optional($application->appliedDate())->toFormattedDateString()}}
@if($application->cover_note)
{{__('Candidate note')}}

{{$application->cover_note}}

@endif @if($application->answers->count())
{{__('Screening answers')}}
@foreach($application->answers as $answer)
{{$answer->question_snapshot}}

{{$answer->answer ?: __('No answer')}}

@endforeach
@endif
{{__('Target roles')}}
{{$application->snapshotListLabel('desired_job_titles')}}
{{__('Locations')}}
{{$application->snapshotListLabel('desired_locations')}}
{{__('Availability')}}
{{$application->snapshotTextLabel('availability')}}
@if($application->snapshotList('desired_skills'))
{{__('Skills')}}
@foreach($application->snapshotList('desired_skills') as $skill) {{$skill}} @endforeach
@endif
{{__('Review applicant')}} @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 candidate')}} @endif
@csrf @method('PATCH')
{{__('Review')}}
@endforeach
{{ $applications->links() }}
@else
{{__('No applicants yet')}}

{{__('When candidates apply, their profile snapshot and note will appear here.')}}

@endif
@endsection