{{ __('Applications') }}
{{ $report['total'] }}
{{ __('Hire rate') }}
{{ $report['hire_rate'] }}%
{{ __('Conversion (closed)') }}
{{ $report['conversion_rate'] }}%
{{ __('Avg. days to hire') }}
{{ $report['avg_days_to_hire'] ?? '—' }}
{{ __('Hiring funnel') }}
{{ __('Applications by job') }}
@forelse($report['by_job'] as $row) @empty @endforelse
{{ $row->title }} {{ $row->total }}
{{ __('No data') }}
@if($report['rejection_breakdown']->isNotEmpty())
{{ __('Rejection reasons') }}
@foreach($report['rejection_breakdown'] as $reason => $count)
{{ \App\Models\RecruitmentJobApplication::rejectionReasonLabel($reason) }} {{ $count }}
@endforeach
@endif
@script @endscript