3aba95bc91
- Creada pagina de FAQ con manual de funcionalidades. - Arregladas alertas de exito y error en CDE de todos los elementos. - Creada alerta de verificacion en la eliminacion de cualquier elemento.
111 lines
9.1 KiB
PHP
111 lines
9.1 KiB
PHP
<x-layout title="{{ $product->name }} - Lauck">
|
|
|
|
<div class="container mx-auto px-4 py-8">
|
|
|
|
<!-- Botón Volver -->
|
|
<a href="{{ route('catalogo.index') }}" class="inline-flex items-center text-gray-700 dark:text-gray-400 hover:text-black hover:dark:text-white mb-6 transition-colors">
|
|
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18"></path></svg>
|
|
Volver al Catálogo
|
|
</a>
|
|
|
|
<div class="bg-slate-100 dark:bg-panel-bg rounded-xl shadow-2xl overflow-hidden border border-neutral-300 dark:border-neutral-800">
|
|
<div class="grid grid-cols-1 md:grid-cols-2">
|
|
|
|
<!-- PANEL IZQUIERDO -->
|
|
<div class="bg-zinc-300 dark:bg-neutral-800 relative h-96 md:h-auto min-h-[500px] flex items-center justify-center py-4 group">
|
|
|
|
@if($product->image_path)
|
|
<img src="{{ asset('storage/' . $product->image_path) }}"
|
|
alt="{{ $product->name }}"
|
|
class="w-full h-full object-contain max-h-[500px] transform drop-shadow-lg">
|
|
@else
|
|
<div class="text-neutral-400 dark:text-neutral-700 flex flex-col items-center">
|
|
<svg class="w-48 h-48" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="0.5" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"></path></svg>
|
|
<span class="mt-4 text-gray-500 text-sm uppercase tracking-widest">Sin Imagen</span>
|
|
</div>
|
|
@endif
|
|
|
|
<!-- Badge de Tipo Flotante -->
|
|
<div class="absolute top-6 left-6">
|
|
<span class="bg-white/50 dark:bg-black/50 backdrop-blur text-black dark:text-white px-3 py-1 rounded-full text-xs font-bold uppercase tracking-wide border border-black/40 dark:border-white/10">
|
|
@if($product->type == 'bike')
|
|
Bicicleta
|
|
@elseif($product->type == 'clothing')
|
|
Indumentaria
|
|
@elseif($product->type == 'spare')
|
|
Repuesto
|
|
@else
|
|
Accesorio
|
|
@endif
|
|
</span>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- PANEL DERECHO -->
|
|
<div class="p-8 md:p-12 flex flex-col justify-center bg-neutral-200 dark:bg-panel-bg">
|
|
|
|
<!-- Encabezado -->
|
|
<div class="mb-6 border-b border-neutral-400 dark:border-neutral-700 pb-6">
|
|
<p class="text-stone-500 dark:text-neon-lime text-sm font-bold uppercase tracking-widest mb-2">SKU: {{ $product->sku ?? 'N/A' }}</p>
|
|
<h1 class="text-4xl font-black text-black dark:text-white italic mb-2 leading-tight">{{ $product->name }}</h1>
|
|
|
|
<!-- Stock Status -->
|
|
<div class="flex items-center gap-2 mt-4">
|
|
@if($product->stock_quantity > 5)
|
|
<span class="w-3 h-3 bg-green-600 dark:bg-green-400 rounded-full animate-pulse"></span>
|
|
<span class="text-green-700 dark:text-green-400 text-sm font-bold">En Stock ({{ $product->stock_quantity }} unid.)</span>
|
|
@elseif($product->stock_quantity > 0)
|
|
<span class="w-3 h-3 bg-yellow-600 dark:bg-yellow-400 rounded-full animate-pulse"></span>
|
|
<span class="text-yellow-900 dark:text-yellow-400 text-sm font-bold">¡Últimas Unidades! ({{ $product->stock_quantity }})</span>
|
|
@else
|
|
<span class="w-3 h-3 bg-red-500 rounded-full"></span>
|
|
<span class="text-red-700 dark:text-red-400 text-sm font-bold">Agotado</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Precio -->
|
|
<div class="mb-8">
|
|
<span class="block text-gray-700 dark:text-gray-400 text-xs uppercase mb-1">Precio Contado</span>
|
|
<div class="flex items-baseline gap-2">
|
|
<span class="text-5xl font-black text-black dark:text-white">${{ number_format($product->price, 0, ',', '.') }}</span>
|
|
<span class="text-gray-500 font-medium">ARG</span>
|
|
</div>
|
|
<p class="text-gray-500 text-xs mt-2">* Consultar financiación en el local.</p>
|
|
</div>
|
|
|
|
<!-- Descripción -->
|
|
<div class="mb-8">
|
|
<h3 class="text-black dark:text-white font-bold uppercase text-sm mb-3">Descripción</h3>
|
|
<p class="text-gray-700 dark:text-gray-400 leading-relaxed">
|
|
{{ $product->description ?? 'Sin descripción detallada disponible para este producto. Por favor, acérquese al local para más información.' }}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Botones de Acción -->
|
|
<div class="mt-auto grid grid-cols-1 sm:grid-cols-2 gap-4">
|
|
<a href="tel:+5403434220103" class="bg-neutral-900 dark:bg-neon-lime text-neon-lime dark:text-neutral-900 font-black py-4 px-6 rounded-lg hover:bg-neutral-800 hover:dark:bg-[#b3e600] transition-all uppercase tracking-wide shadow-lg shadow-black/20 dark:shadow-neon-lime/20 flex items-center justify-center gap-2 transform hover:-translate-y-1">
|
|
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path></svg>
|
|
Consultar
|
|
</button>
|
|
|
|
<a href="https://wa.me/3434220103?text=Hola,%20me%20interesa%20el%20producto:%20{{ $product->name }}" target="_blank" class="bg-green-500 dark:bg-neutral-800 text-white font-bold py-4 px-6 rounded-lg hover:bg-green-600 hover:dark:bg-neutral-700 border border-white dark:border-neutral-700 transition-all uppercase tracking-wide flex items-center justify-center gap-2">
|
|
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.008-.57-.008-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z"/></svg>
|
|
WhatsApp
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-layout>
|
|
{{-- <a href="{{ route('productos.edit', $product ) }}" class="w-full sm:w-auto px-5 py-2 rounded-full text-white font-semibold bg-blue-600 hover:bg-blue-700">Editar</a>
|
|
<form action="{{route('productos.destroy',$product)}}" method="post" class="delete-form">
|
|
@csrf
|
|
@method('DELETE')
|
|
<button type="submit" class="w-full sm:w-auto px-5 py-2 rounded-full text-white font-semibold bg-red-600 hover:bg-red-700">
|
|
Borrar
|
|
</button>
|
|
</form> --}} |