| {{ __('ID') }} | {{ __('Candidate') }} | {{ __('Job') }} | {{ __('Status') }} | {{ __('Applied') }} | {{ __('Documents') }} | |
|---|---|---|---|---|---|---|
#{{ $row->id }} |
{{ $row->candidate->name }}
{{ $row->candidate->email }}
|
{{ $row->jobPosting->title }}
@if($row->jobPosting->warehouse)
{{ $row->jobPosting->warehouse->name }}
@endif
|
{{ \App\Models\RecruitmentJobApplication::statusLabel($row->status) }} | {{ $row->created_at?->format('Y-m-d') }} | @include('recruitment.partials.letter-actions', ['application' => $row, 'compact' => true]) | {{ auth()->user()->can('Recruitment-edit') ? __('Open') : __('View') }} |
| {{ $hasFilters ? __('No applications match your filters.') : __('No applications yet.') }} | ||||||