@extends('layouts.admin') @section('title', 'Détails Candidature - ' . $candidature->full_name) @section('content')
Retour au dashboard

Détails de la candidature

Informations Personnelles

{{ $candidature->full_name }}

{{ $candidature->phone }}

{{ $candidature->availability }}

Parcours Académique & Professionnel

{{ ucfirst($candidature->education_level) }}

{{ $candidature->experience_years }} ans

{{ $candidature->speciality }}

{{ $candidature->career_wish }}

Motivation & Attentes

{{ $candidature->expectations }}

Statut
@if($candidature->is_read)

Candidature lue

@else

Non lue

@endif Reçue le {{ $candidature->created_at->format('d/m/Y à H:i') }}
Documents
@if($candidature->cv_path)

CV disponible

Télécharger le CV @else

Aucun CV disponible

@endif
@endsection @section('scripts') @endsection