@extends('dashboard.layouts.app') @section('title', 'Détail Congé - ' . $conge->user->name . ' - UAC eservices') @section('page-title', 'Détail de la demande de congé') @section('breadcrumb')
{{ $conge->user->email }}
{{ $conge->user->role->nom }}{{ $conge->type_conge }}
{{ number_format($conge->nombre_jours, 0) }} jour(s)
{{ $conge->date_debut->format('d/m/Y') }}
{{ $conge->date_fin->format('d/m/Y') }}
{{ $conge->motif }}
{{ $conge->created_at->format('d/m/Y à H:i') }}
{{ $conge->updated_at->format('d/m/Y à H:i') }}
| Type | Période | Jours | Statut | Date |
|---|---|---|---|---|
| {{ $congeHistorique->type_conge }} | {{ $congeHistorique->date_debut->format('d/m/Y') }} - {{ $congeHistorique->date_fin->format('d/m/Y') }} | {{ number_format($congeHistorique->nombre_jours, 0) }} | {{ $congeHistorique->statut }} | {{ $congeHistorique->created_at->format('d/m/Y') }} |
Aucun congé précédent trouvé.
@endif