@extends('layouts.nova') @section('content') {{-- ── Hero header ── --}}

History

{{ $page_title ?? 'Today in History' }}

Featured artworks uploaded on {{ $todayLabel ?? now()->format('F j') }} in past years.

{{-- ── Gallery ── --}}
@if($artworks && $artworks->count())
@foreach($artworks as $ar)
{{ $ar->name ?? '' }} {{-- Title overlay on hover --}}

{{ $ar->name ?? 'Untitled' }}

@endforeach
{{-- Pagination --}}
{{ $artworks->withQueryString()->links('pagination::bootstrap-4') }}
@else

📅

No featured artworks found for this day in history.

Check back tomorrow!

@endif
@endsection