902b8433d9
- Implementada nueva funcion para crear productos destacados por etiquetas, mostrando carrusel con los mismos en la pagina welcome.
18 lines
701 B
PHP
18 lines
701 B
PHP
<x-layout title="Home - Lauck">
|
|
<x-section-header subtitle="Inicio" title="Bicicleteria " highlight="Lauck"/>
|
|
|
|
<!-- CARROUSELES POR ETIQUETA -->
|
|
<div class="w-full mb-12 space-y-16">
|
|
@forelse($tagsConProductos as $tag)
|
|
<div>
|
|
<x-ui.carrousel :items="$tag->products" title="{{ $tag->name }}" />
|
|
</div>
|
|
@empty
|
|
<div class="text-center py-12 bg-slate-100 dark:bg-panel-bg rounded-xl border border-neutral-200 dark:border-neutral-800">
|
|
<p class="text-gray-500 dark:text-gray-400 font-medium">Aún no hay productos etiquetados para mostrar.</p>
|
|
</div>
|
|
@endforelse
|
|
</div>
|
|
|
|
</x-layout>
|