{{ $post->title }}
@if($post->wp_published_at)Publié le {{ $post->wp_published_at->translatedFormat('d F Y') }}
@endif@php
$seoHead = $post->seo_head;
// Détecte si cet article correspond à une ville du Bassin (pour la mini-carte)
$city = collect(config('bassin.cities'))->first(fn ($c) => rawurldecode($c['url']) === $post->uri);
$isCitiesIndex = $post->uri === '/les-villes-aux-alentours/';
@endphp
@extends('layouts.app')
@section('content')
Publié le {{ $post->wp_published_at->translatedFormat('d F Y') }}{{ $post->title }}
@if($post->wp_published_at)
@endif
{{-- Mini-carte interactive pour une fiche ville --}}
@if($city)
@include('partials.city-map', ['city' => $city])
@endif