@extends('layouts.user') @section('content')

{{ __("All Applicants") }}

{{ __("Ready to jump back in?") }}
{{__("Add new applicant")}}
@include('admin.message')

{{ __("Applicants") }}

{{ __("Export") }}
@php $job = \Modules\Job\Models\Job::find(Request()->input('job_id')); \App\Helpers\AdminForm::select2('job_id', [ 'configs' => [ 'ajax' => [ 'url' => route('job.admin.getForSelect2'), 'dataType' => 'json' ], 'allowClear' => true, 'placeholder' => __('-- Select Job --') ] ], !empty($job->id) ? [ $job->id, $job->title . ' (#' . $job->id . ')' ] : false); @endphp
@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __("Candidate") }} {{ __("Job Title") }} {{ __("CV") }} {{ __("Date Applied") }} {{ __("Status") }} {{ __("Actions") }}
@if(!empty($row->candidateInfo->getAuthor->getDisplayName())) {{$row->candidateInfo->getAuthor->getDisplayName() ?? ''}} @endif {{$row->jobInfo->title}} @if(!empty($row->cvInfo->file_id)) @php $file = (new \Modules\Media\Models\MediaFile())->findById($row->cvInfo->file_id) @endphp {{ $file->file_name.'.'.$file->file_extension }} @endif {{ display_date($row->created_at) }} {{ $row->status }}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection @section('footer') @endsection