850a55f257
- Agregada funcion de cambio de tema para el modo claro STYLE: - Agregadas variantes de estilos, clases en modo claro y oscuro - Quedan pendientes mas componentes a estilizar
55 lines
2.8 KiB
PHP
55 lines
2.8 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 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
@foreach ($products as $product)
|
|
<div class="group p-4 border bg-neutral-100/30 dark:bg-neutral-950/30 border-neutral-200 dark:border-neutral-800 rounded-xl hover:border-lime-500 hover:dark:border-neon-lime hover:-translate-y-1 transition-all duration-300">
|
|
{{-- Imagen si existe --}}
|
|
@if (!empty($product->image_path))
|
|
<img src="{{ asset('storage/' . $product->image_path) }}" alt="{{ $product->name }}"
|
|
class="w-full h-40 object-cover rounded mb-4">
|
|
@else
|
|
<div class="w-full border border-neutral-200 dark:border-neutral-800 h-40 bg-stone-100 dark:bg-stone-900 flex items-center justify-center rounded mb-4">
|
|
<span class="text-lime-500 dark:text-neon-lime text-md uppercase font-bold">Sin imagen</span>
|
|
</div>
|
|
@endif
|
|
|
|
{{-- Nombre --}}
|
|
<h2 class="text-lg font-semibold text-black dark:text-white">{{ $product->name }}</h2>
|
|
|
|
{{-- Descripción corta --}}
|
|
<div class="h-10 overflow-y-auto [scrollbar-width:none]">
|
|
@if (!empty($product->description))
|
|
<p class="text-sm text-gray-400 mt-2">{{ $product->description }}</p>
|
|
@endif
|
|
</div>
|
|
|
|
{{-- Precio --}}
|
|
@if (!empty($product->price))
|
|
<p class="text-white group-hover:text-neon-lime font-bold mt-3 transition-colors">${{ number_format($product->price, 2, ',', '.') }}</p>
|
|
@endif
|
|
|
|
{{-- Botón --}}
|
|
<a href="{{ route('catalogo.show', $product) }}"
|
|
class="mt-4 block w-full bg-neon-lime/80 uppercase text-black font-semibold py-2 rounded-lg text-center shadow-md shadow-neon-lime/10 hover:bg-neutral-900/70 border border-transparent hover:text-neon-lime hover:shadow-neon-lime/20 hover:border-neutral-800 transition-all">
|
|
Ver +
|
|
</a>
|
|
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
@else
|
|
<p class="text-center text-gray-400 dark:text-gray-600 mt-10">No hay productos disponibles.</p>
|
|
@endif
|
|
|
|
<div class="mt-3">
|
|
{{ $products->links() }}
|
|
</div>
|
|
</div>
|
|
</x-layout>
|