@extends('layouts.dashboard') @section('title', 'Public holidays') @section('content')

Public holidays

Add holiday

Seed data was compiled from general knowledge, not each council's own gazette. Rows marked "unverified" below have not been confirmed against a primary source — check them before relying on them to block a delivery day.

@foreach ($holidays as $holiday) @endforeach
Date Name Region Status
{{ $holiday->date->format('Y-m-d') }} {{ $holiday->name }} {{ $holiday->area ?? 'All areas' }} @if ($holiday->is_placeholder) unverified @else confirmed @endif Edit
@csrf @method('DELETE')
@endsection