@extends('layouts.admin') @section('title', 'Candidatures') @section('page_title', 'Candidatures') @section('content')
@if(request('job_offer_id')) Filtré sur une offre ✕ @endif
@forelse($applications as $application)

{{ $application->full_name }}

{{ $application->jobOffer->title ?? 'Candidature spontanée' }} · {{ $application->created_at->format('d/m/Y') }}

$application->status === 'recu', 'bg-blue-50 text-blue-600' => $application->status === 'preselectionne', 'bg-amber-50 text-amber-600' => $application->status === 'entretien', 'bg-emerald-50 text-emerald-600' => $application->status === 'accepte', 'bg-rose-50 text-rose-600' => $application->status === 'refuse', ])>{{ $application->statusLabel() }}
@empty

Aucune candidature pour l'instant.

@endforelse
{{ $applications->links() }}
@endsection