@extends('dashboard.layout.base') @section('content')
Liste des demandes de vacation
@include('dashboard.component.dashboard_error') @include('dashboard.component.notifications') @if(count($vacations) > 0)
@foreach($vacations as $vacation) @endforeach
Nom du demandeur Motif: Date de la demande: Télécharger la demande Supprimer
{{ $vacation->employee->name }} {{ $vacation->motif }} {{ $vacation->created_at->format('Y-m-d') }}
@else

Vous n'avez aucune demande

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