52 lines
2.4 KiB
PHP
52 lines
2.4 KiB
PHP
<x-layout title="Catalogo - Lauck">
|
|
|
|
<!-- Header -->
|
|
<x-section-header subtitle="Inicio" title="Catalogo de " highlight="Productos"/>
|
|
|
|
<div class="w-full max-w-5xl">
|
|
|
|
@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))
|
|
<img src="{{ asset('storage/' . $prod->img) }}" alt="{{ $prod->name }}"
|
|
class="w-full h-40 object-cover rounded mb-4">
|
|
@else
|
|
<div class="w-full h-40 bg-lime-500 flex items-center justify-center rounded mb-4">
|
|
<span class="text-neutral-900 text-md uppercase font-bold">Sin imagen</span>
|
|
</div>
|
|
@endif
|
|
|
|
{{-- Nombre --}}
|
|
<h2 class="text-lg font-semibold text-white">{{ $prod->name }}</h2>
|
|
|
|
{{-- Descripción corta --}}
|
|
<div class="h-10 overflow-y-auto [scrollbar-width:none]">
|
|
@if (!empty($prod->description))
|
|
<p class="text-sm text-gray-400 mt-2">{{ $prod->description }}</p>
|
|
@endif
|
|
</div>
|
|
|
|
{{-- Precio --}}
|
|
@if (!empty($prod->price))
|
|
<p class="text-white group-hover:text-neon-lime font-bold mt-3 transition-colors">${{ number_format($prod->price, 2, ',', '.') }}</p>
|
|
@endif
|
|
|
|
{{-- Botón --}}
|
|
<a href="{{ route('productos.show', $prod) }}"
|
|
class="mt-4 block w-full bg-blue-500 text-white py-2 rounded-lg text-center hover:bg-blue-600">
|
|
Ver producto
|
|
</a>
|
|
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
@else
|
|
<p class="text-center text-gray-600 mt-10">No hay productos disponibles.</p>
|
|
@endif
|
|
</div>
|
|
</x-layout>
|