@extends('layouts.nova')
@section('content')
{{-- ── Hero header ── --}}
Skinbase
Daily Uploads
Browse all artworks uploaded on a specific date.
Latest Uploads
{{-- ── Date strip ── --}}
@foreach($dates as $i => $d)
@endforeach
{{-- ── Active date label ── --}}
Showing uploads from {{ $dates[0]['label'] ?? 'today' }}
{{-- ── Grid container ── --}}
@include('web.partials.daily-uploads-grid', ['arts' => $recent])
{{-- ── Loading overlay (hidden) ── --}}
@push('scripts')
@endpush
@endsection