@if(!empty($stats))
{{ __('Total') }}
{{ $stats['total_applications'] ?? 0 }}
{{ __('New') }}
{{ $stats['applied'] ?? 0 }}
{{ __('In pipeline') }}
{{ $stats['in_pipeline'] ?? 0 }}
{{ __('Offered') }}
{{ $stats['offered'] ?? 0 }}
{{ __('Hired') }}
{{ $stats['hired'] ?? 0 }}
@endif
@foreach($statuses as $key => $label) @endforeach
@if($hasFilters) @endif
@forelse($applications as $row) @empty @endforelse
{{ __('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.') }}