@extends('admin.layout') @section('title') Paramètres @endsection @section('content')

Gestion des Jours Fériés

@foreach($holidays as $holiday) @endforeach
Nom Date de début Date de fin Type Région Statut Actions
{{ $holiday->name }} {{ $holiday->date_debut->format('d/m/Y') }} {{ $holiday->date_fin->format('d/m/Y') }} @if($holiday->type === 'national') National @elseif($holiday->type === 'regional') Régional @else Personnalisé @endif {{ $holiday->region ?? 'France' }}
@csrf
@endsection @section('script') @endsection