@php // Check if article is not visible OR has no offers at all $hasNoOffers = empty($article['offers'] ?? false) || !array_filter($article['offers']); $shouldShowComingSoon = !($article['visible'] ?? true) || $hasNoOffers; @endphp @if ($shouldShowComingSoon) {{-- Display "Coming Soon" box when article is not visible or has no offers --}}

Bientôt disponible
@else {{-- Display normal offers for visible articles with available offers --}} @foreach ($article['offers'] as $natureKey => $natureOffers) @if (!empty($natureOffers)) @include('Shop.Articles.partials.addBasket', [ 'data' => $natureOffers, 'title' => ucfirst($natureKey), 'model' => $natureKey, 'bgClass' => 'bg-green-light', ]) @endif @endforeach @endif @include('load.basket') @push('js') @endpush