@extends('layouts.public') @section('title', 'Catalogues') @section('content') {{-- Factory pour éviter "catalogSlider is not defined" --}}
@foreach($categories as $category)

{{ $category->name }} @if(!$loop->first) @include('backgrounds.bg-7') @endif

@if($category->catalogs->count() > 0) @endif
@forelse($category->catalogs as $catalog) @empty
Aucun catalogue dans cette catégorie.
@endforelse
@if($category->catalogs->count() > 0)
@endif
@endforeach
@endsection