INSTALE TAILWIND Y JQUERY GENTE

This commit is contained in:
BryamE
2025-12-12 00:37:59 -03:00
parent 1d0d962c4e
commit 59ebbee5e6
8 changed files with 2642 additions and 45 deletions
-6
View File
@@ -8,7 +8,6 @@
@if ($products->count() > 0)
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6">
@foreach ($products as $prod)
<x-ui.imagecard title="" aria-description="">
<div class="group p-4 border border-neutral-800 rounded-xl hover:border-neon-lime hover:-translate-y-1 transition-all duration-300">
{{-- Imagen si existe --}}
@if (!empty($prod->img))
@@ -48,9 +47,4 @@
<p class="text-center text-gray-600 mt-10">No hay productos disponibles.</p>
@endif
</div>
<!-- Paginación -->
<div class="w-full flex justify-center">
{{ $products->links() }}
</div>
</x-layout>