@extends('layouts.app') @section('title', 'Connect - Public Holidays') @section('content')
@can('holidays.manage') @endcan @if($holidays->isEmpty()) @else @foreach($holidays as $holiday) @can('holidays.manage') @endcan @can('holidays.manage') @endcan @endforeach @endif
Name Date Is Recurring Yearly DescriptionActions

No public holidays configured. Click "Add Holiday" to register upcoming company events.

{{ $holiday->name }} {{ $holiday->date->format('d-M-Y') }} ({{ $holiday->date->format('l') }}) {{ $holiday->is_recurring ? 'Yes' : 'No' }} {{ $holiday->description ?? '-' }}
@csrf @method('DELETE')
@if($holidays->hasPages()) @endif
@can('holidays.manage') @endcan @endsection