@extends('dashboard.layout.base') @section('content')
Liste des demande Congé
@include('dashboard.component.dashboard_error') @include('dashboard.component.notifications') @if(count($conges) > 0)
@foreach($conges as $conge) @endforeach
Nom du demandeur Date de début: Date d'entrée: Durée: Décision: Afficher/Modifier Télécharger la demande Télécharger la décision Supprimer
{{ $conge->employee->name }} {{ $conge->debut }} {{ $conge->fin }} {{ $conge->dure }} {{ $conge->etat }} @if ($conge->decision == 1) @else

-

@endif
@else

Vous n'avez aucune demande

@endif
@include('dashboard.component.copyright')
@endsection @push('styles') @endpush @push('scripts') @endpush