cambios esteticos
This commit is contained in:
@@ -12,10 +12,18 @@
|
|||||||
<x-forms.label for="name" value="Nombre del Producto" />
|
<x-forms.label for="name" value="Nombre del Producto" />
|
||||||
<x-forms.input id="name" name="name" type="text" :value="old('name')" required autofocus placeholder="Ej: Cámara 29 Válvula Auto" :error="$errors->first('name')" />
|
<x-forms.input id="name" name="name" type="text" :value="old('name')" required autofocus placeholder="Ej: Cámara 29 Válvula Auto" :error="$errors->first('name')" />
|
||||||
</div>
|
</div>
|
||||||
<!-- SKU -->
|
<!-- proveedor -->
|
||||||
<div class="md:col-span-2">
|
<div class="md:col-span-2">
|
||||||
<x-forms.label for="sku" value="Código SKU (Opcional)" />
|
<x-forms.label for="suppliers_id" value="Proveedor" />
|
||||||
<x-forms.input id="sku" name="sku" type="text" :value="old('sku')" placeholder="Dejar vacío para generar auto" :error="$errors->first('sku')" />
|
<select id="suppliers_id" name="suppliers_id" required class="bg-gray-300 dark:bg-neutral-800 border border-neutral-400 dark:border-neutral-700 dark:text-white text-sm rounded-lg focus:ring-neon-lime focus:border-neon-lime block w-full p-2.5">
|
||||||
|
<option value="" disabled selected>Seleccione un proveedor</option>
|
||||||
|
@foreach($suppliers as $supplier)
|
||||||
|
<option value="{{ $supplier->id }}" {{ old('suppliers_id') == $supplier->id ? 'selected' : '' }}>
|
||||||
|
{{ $supplier->name }}
|
||||||
|
</option>
|
||||||
|
@endforeach
|
||||||
|
</select>
|
||||||
|
@error('suppliers_id') <span class="text-red-500 text-xs mt-1">{{ $message }}</span> @enderror
|
||||||
</div>
|
</div>
|
||||||
<!-- Tipo -->
|
<!-- Tipo -->
|
||||||
<div class="md:col-span-2">
|
<div class="md:col-span-2">
|
||||||
|
|||||||
@@ -2,30 +2,37 @@
|
|||||||
<x-section-header subtitle="Inventario" title="Edicion de " highlight="Producto" />
|
<x-section-header subtitle="Inventario" title="Edicion de " highlight="Producto" />
|
||||||
|
|
||||||
<div class="w-full max-w-4xl mx-auto bg-gray-200 dark:bg-panel-bg border border-neutral-400 dark:border-neutral-800 rounded-xl p-8 shadow-lg">
|
<div class="w-full max-w-4xl mx-auto bg-gray-200 dark:bg-panel-bg border border-neutral-400 dark:border-neutral-800 rounded-xl p-8 shadow-lg">
|
||||||
<form action="{{route('productos.update',$product)}}" method="POST">
|
<form action="{{route('productos.update',$product)}}" method="POST" enctype="multipart/form-data">
|
||||||
@csrf
|
@csrf
|
||||||
@method('PUT')
|
@method('PUT')
|
||||||
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-6">
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-6">
|
||||||
|
|
||||||
<!-- Nombre -->
|
|
||||||
<div class="md:col-span-4">
|
<div class="md:col-span-4">
|
||||||
<x-forms.label for="name" value="Nombre del Producto" />
|
<x-forms.label for="name" value="Nombre del Producto" />
|
||||||
<x-forms.input id="name" name="name" type="text" value="{{$product->name}}" required autofocus placeholder="Ej: Cámara 29 Válvula Auto" :error="$errors->first('name')" />
|
<x-forms.input id="name" name="name" type="text" value="{{ old('name', $product->name) }}" required autofocus placeholder="Ej: Cámara 29 Válvula Auto" :error="$errors->first('name')" />
|
||||||
</div>
|
</div>
|
||||||
<!-- SKU -->
|
|
||||||
<div class="md:col-span-2">
|
<div class="md:col-span-2">
|
||||||
<x-forms.label for="sku" value="Código SKU (Opcional)" />
|
<x-forms.label for="suppliers_id" value="Proveedor" />
|
||||||
<x-forms.input id="sku" name="sku" type="text" value="{{$product->sku}}" placeholder="Dejar vacío para generar auto" :error="$errors->first('sku')" />
|
<select id="suppliers_id" name="suppliers_id" required class="bg-gray-300 dark:bg-neutral-800 border border-neutral-400 dark:border-neutral-700 dark:text-white text-sm rounded-lg focus:ring-neon-lime focus:border-neon-lime block w-full p-2.5">
|
||||||
|
<option value="" disabled>Seleccione un proveedor</option>
|
||||||
|
@foreach($suppliers as $supplier)
|
||||||
|
<option value="{{ $supplier->id }}" {{ old('suppliers_id', $product->suppliers_id) == $supplier->id ? 'selected' : '' }}>
|
||||||
|
{{ $supplier->name }}
|
||||||
|
</option>
|
||||||
|
@endforeach
|
||||||
|
</select>
|
||||||
|
@error('suppliers_id') <span class="text-red-500 text-xs mt-1">{{ $message }}</span> @enderror
|
||||||
</div>
|
</div>
|
||||||
<!-- Tipo -->
|
|
||||||
<div class="md:col-span-2">
|
<div class="md:col-span-2">
|
||||||
<x-forms.label for="type" value="Tipo de Producto" />
|
<x-forms.label for="type" value="Tipo de Producto" />
|
||||||
<select id="type" name="type" class="bg-gray-300 dark:bg-neutral-800 border border-neutral-400 dark:border-neutral-700 dark:text-white text-sm rounded-lg focus:ring-neon-lime focus:border-neon-lime block w-full p-2.5">
|
<select id="type" name="type" required class="bg-gray-300 dark:bg-neutral-800 border border-neutral-400 dark:border-neutral-700 dark:text-white text-sm rounded-lg focus:ring-neon-lime focus:border-neon-lime block w-full p-2.5">
|
||||||
<option value="accessory" {{ $product->type == 'accessory' ? 'selected' : '' }}>Accesorio</option>
|
<option value="accessory" {{ old('type', $product->type) == 'accessory' ? 'selected' : '' }}>Accesorio</option>
|
||||||
<option value="bike" {{ $product->type == 'bike' ? 'selected' : '' }}>Bicicleta</option>
|
<option value="bike" {{ old('type', $product->type) == 'bike' ? 'selected' : '' }}>Bicicleta</option>
|
||||||
<option value="clothing" {{ $product->type == 'clothing' ? 'selected' : '' }}>Indumentaria</option>
|
<option value="clothing" {{ old('type', $product->type) == 'clothing' ? 'selected' : '' }}>Indumentaria</option>
|
||||||
<option value="spare" {{ $product->type == 'spare' ? 'selected' : '' }}>Repuesto</option>
|
<option value="spare" {{ old('type', $product->type) == 'spare' ? 'selected' : '' }}>Repuesto</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<!-- Precios -->
|
<!-- Precios -->
|
||||||
<div class="">
|
<div class="">
|
||||||
|
|||||||
@@ -2,107 +2,102 @@
|
|||||||
|
|
||||||
<x-section-header subtitle="Gestión de Inventario" title="Listado de " highlight="Productos" />
|
<x-section-header subtitle="Gestión de Inventario" title="Listado de " highlight="Productos" />
|
||||||
|
|
||||||
<!-- Mensajes de feedback -->
|
|
||||||
<x-ui.alert />
|
<x-ui.alert />
|
||||||
|
|
||||||
<!-- Barra de Herramientas (Buscador + Botones) -->
|
|
||||||
<div class="w-full flex flex-col xl:flex-row justify-between items-start xl:items-center gap-4 mb-6">
|
<div class="w-full flex flex-col xl:flex-row justify-between items-start xl:items-center gap-4 mb-6">
|
||||||
|
|
||||||
<!-- Buscador y Filtros -->
|
<div class="w-full xl:w-4/5 flex flex-col md:flex-row gap-3">
|
||||||
<form action="{{ route('productos.index') }}" method="GET" class="w-full xl:w-4/5 flex flex-col md:flex-row gap-3">
|
|
||||||
|
|
||||||
<!-- 1. Buscador por Texto -->
|
|
||||||
<div class="relative w-full md:w-2/5">
|
<div class="relative w-full md:w-2/5">
|
||||||
<div class="absolute inset-y-0 start-0 flex items-center ps-3 pointer-events-none">
|
<div class="absolute inset-y-0 start-0 flex items-center ps-3 pointer-events-none">
|
||||||
<svg class="w-4 h-4 text-gray-600 dark:text-gray-500" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20">
|
<svg class="w-4 h-4 text-gray-600 dark:text-gray-500" fill="none" viewBox="0 0 20 20"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/></svg>
|
||||||
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
</div>
|
||||||
<input type="text" name="search" value="{{ request('search') }}"
|
<input type="text" id="searchInput" class="block w-full p-3 ps-10 text-sm text-black dark:text-white border border-neutral-400 dark:border-neutral-700 rounded-lg bg-neutral-200 dark:bg-neutral-800 placeholder-gray-600 dark:placeholder-gray-500 focus:ring-neon-lime focus:border-neon-lime" placeholder="Buscar por nombre...">
|
||||||
class="block w-full p-3 ps-10 text-sm text-black dark:text-white border border-neutral-400 dark:border-neutral-700 rounded-lg bg-neutral-200 dark:bg-neutral-800 placeholder-gray-600 dark:placeholder-gray-500 focus:ring-neon-lime focus:border-neon-lime"
|
|
||||||
placeholder="Buscar por nombre">
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 2. Filtro de Categoría (Tipo) -->
|
|
||||||
<div class="w-full md:w-1/4">
|
<div class="w-full md:w-1/4">
|
||||||
<select name="type" onchange="this.form.submit()"
|
<select id="typeFilter" class="block w-full p-3 text-sm text-black dark:text-white border border-neutral-300 dark:border-neutral-700 rounded-lg bg-neutral-200 dark:bg-neutral-800 focus:ring-neon-lime focus:border-neon-lime cursor-pointer">
|
||||||
class="block w-full p-3 text-sm text-black dark:text-white border border-neutral-300 dark:border-neutral-700 rounded-lg bg-neutral-200 dark:bg-neutral-800 focus:ring-neon-lime focus:border-neon-lime cursor-pointer">
|
<option value="all">Todas las Categorías</option>
|
||||||
<option value="">Todas las Categorías</option>
|
<option value="bike">Bicicletas</option>
|
||||||
<option value="bike" {{ request('type') == 'bike' ? 'selected' : '' }}>Bicicletas</option>
|
<option value="clothing">Indumentaria</option>
|
||||||
<option value="clothing" {{ request('type') == 'clothing' ? 'selected' : '' }}>Indumentaria</option>
|
<option value="accessory">Accesorios</option>
|
||||||
<option value="accessory" {{ request('type') == 'accessory' ? 'selected' : '' }}>Accesorios</option>
|
<option value="spare">Repuestos</option>
|
||||||
<option value="spare" {{ request('type') == 'spare' ? 'selected' : '' }}>Repuestos</option>
|
<option value="children">Infantil</option>
|
||||||
<option value="children" {{ request('type') == 'children' ? 'selected' : '' }}>Infantil</option>
|
<option value="rollers">Rollers</option>
|
||||||
<option value="rollers" {{ request('type') == 'rollers' ? 'selected' : '' }}>Rollers</option>
|
<option value="skate">Skate</option>
|
||||||
<option value="skate" {{ request('type') == 'skate' ? 'selected' : '' }}>Skate</option>
|
<option value="service">Servicios</option>
|
||||||
<option value="other" {{ request('type') == 'other' ? 'selected' : '' }}>Otros</option>
|
<option value="other">Otros</option>
|
||||||
<option value="service" {{ request('type') == 'service' ? 'selected' : '' }}>Servicios</option>
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 3. Filtro de Estado de Stock -->
|
|
||||||
<div class="w-full md:w-1/4">
|
<div class="w-full md:w-1/4">
|
||||||
<select name="stock_status" onchange="this.form.submit()"
|
<select id="stockFilter" class="block w-full p-3 text-sm text-black dark:text-white border border-neutral-300 dark:border-neutral-700 rounded-lg bg-neutral-200 dark:bg-neutral-800 focus:ring-neon-lime focus:border-neon-lime cursor-pointer">
|
||||||
class="block w-full p-3 text-sm text-black dark:text-white border border-neutral-300 dark:border-neutral-700 rounded-lg bg-neutral-200 dark:bg-neutral-800 focus:ring-neon-lime focus:border-neon-lime cursor-pointer">
|
<option value="all">Cualquier Stock</option>
|
||||||
<option value="">Cualquier Stock</option>
|
<option value="low" class="text-red-600 dark:text-red-400 font-semibold">Stock en Alerta</option>
|
||||||
<option value="low" {{ request('stock_status') == 'low' ? 'selected' : '' }} class="text-red-600 dark:text-red-300 font-semibold">Stock en Alerta</option>
|
<option value="medium" class="text-yellow-600 dark:text-yellow-400 font-semibold">Stock Bajo</option>
|
||||||
<option value="medium" {{ request('stock_status') == 'medium' ? 'selected' : '' }} class="text-yellow-600 dark:text-yellow-300 font-semibold">Stock Bajo</option>
|
<option value="ok" class="text-green-600 dark:text-green-400 font-semibold">Stock Normal</option>
|
||||||
<option value="ok" {{ request('stock_status') == 'ok' ? 'selected' : '' }} class="text-green-600 dark:text-green-300 font-semibold">Stock Normal</option>
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Botón Limpiar Filtros -->
|
|
||||||
@if(request('search') || request('type') || request('stock_status'))
|
|
||||||
<div class="w-full md:w-auto flex">
|
|
||||||
<a href="{{ route('productos.index') }}" title="Limpiar Filtros"
|
|
||||||
class="flex items-center justify-center p-3 text-sm font-bold text-red-600 dark:text-red-400 bg-red-100 dark:bg-red-900/30 rounded-lg hover:bg-red-200 dark:hover:bg-red-900/50 border border-red-200 dark:border-red-800 transition-colors">
|
|
||||||
<svg class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
|
||||||
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18 17.94 6M18 18 6.06 6"/>
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
@endif
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<!-- Botón Nuevo -->
|
|
||||||
<a href="{{ route('productos.create') }}" class="w-full xl:w-auto text-center px-5 py-3 text-sm font-bold text-neon-lime dark:text-neutral-900 bg-neutral-950 dark:bg-neon-lime rounded-lg hover:bg-neutral-900/80 hover:dark:bg-[#b3e600] transition-colors uppercase tracking-wide">
|
<a href="{{ route('productos.create') }}" class="w-full xl:w-auto text-center px-5 py-3 text-sm font-bold text-neon-lime dark:text-neutral-900 bg-neutral-950 dark:bg-neon-lime rounded-lg hover:bg-neutral-900/80 hover:dark:bg-[#b3e600] transition-colors uppercase tracking-wide">
|
||||||
+ Nuevo Producto
|
+ Nuevo Producto
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Tabla de Productos -->
|
<div class="relative overflow-x-auto shadow-md sm:rounded-lg border border-gray-400 dark:border-neutral-800 w-full mb-4">
|
||||||
<div class="relative overflow-x-auto shadow-md sm:rounded-lg border border-gray-400 dark:border-neutral-800 w-full">
|
|
||||||
<table class="w-full text-sm text-left rtl:text-right text-neutral-900 dark:text-white">
|
<table class="w-full text-sm text-left rtl:text-right text-neutral-900 dark:text-white">
|
||||||
<thead class="text-xs text-neutral-800 dark:text-gray-300 uppercase bg-gray-400 dark:bg-neutral-800 border-b border-gray-300 dark:border-neutral-700">
|
<thead class="text-xs text-neutral-800 dark:text-gray-300 uppercase bg-gray-400 dark:bg-neutral-800 border-b border-gray-300 dark:border-neutral-700">
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" class="px-6 py-3">Producto</th>
|
<th scope="col" class="px-6 py-3">
|
||||||
<th scope="col" class="px-6 py-3">Tipo</th>
|
<div class="flex items-center gap-6">
|
||||||
|
<span class="w-40 shrink-0">Categoría</span>
|
||||||
|
<span>Detalle del Producto</span>
|
||||||
|
</div>
|
||||||
|
</th>
|
||||||
|
<th scope="col" class="px-6 py-3">Costo</th>
|
||||||
<th scope="col" class="px-6 py-3">Precio</th>
|
<th scope="col" class="px-6 py-3">Precio</th>
|
||||||
<th scope="col" class="px-6 py-3 text-center">Stock</th>
|
<th scope="col" class="px-6 py-3 text-center">Stock</th>
|
||||||
<th scope="col" class="px-6 py-3 text-right">Acciones</th>
|
<th scope="col" class="px-6 py-3 text-right">Acciones</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody id="tabla-productos">
|
||||||
@forelse($products as $product)
|
@forelse($products as $product)
|
||||||
<tr class="bg-gray-200/50 dark:bg-neutral-900/50 border-b border-gray-400 dark:border-neutral-800 hover:bg-gray-400 hover:dark:bg-neutral-800 transition-colors group">
|
<tr class="bg-gray-200/50 dark:bg-neutral-900/50 border-b border-gray-400 dark:border-neutral-800 hover:bg-gray-400 hover:dark:bg-neutral-800 transition-colors group product-row"
|
||||||
<td class="px-6 py-4 font-medium whitespace-nowrap">
|
data-name="{{ strtolower($product->name) }}"
|
||||||
<div class="text-base font-bold">{{ $product->name }}</div>
|
data-type="{{ $product->type }}"
|
||||||
<div class="text-xs text-gray-600 dark:text-gray-400 font-mono">{{ $product->sku ?? 'Sin SKU' }}</div>
|
data-stock="{{ $product->stock_quantity }}"
|
||||||
</td>
|
data-min="{{ $product->min_stock_alert }}">
|
||||||
|
|
||||||
<td class="px-6 py-4">
|
<td class="px-6 py-4">
|
||||||
@if($product->type === 'bike') <x-ui.badge color="neon">Bicicleta</x-ui.badge>
|
<div class="flex flex-col gap-1">
|
||||||
@elseif($product->type === 'clothing') <x-ui.badge color="blue">Indumentaria</x-ui.badge>
|
<div class="flex items-center gap-6">
|
||||||
@elseif($product->type === 'spare') <x-ui.badge color="gray">Repuesto</x-ui.badge>
|
<div class="text-sm font-bold tracking-wider shrink-0 w-40">
|
||||||
@elseif($product->type === 'children') <x-ui.badge color="pink">Infantil</x-ui.badge>
|
@if($product->type === 'bike') <x-ui.badge color="neon">BICICLETA</x-ui.badge>
|
||||||
@elseif($product->type === 'rollers') <x-ui.badge color="purple">Rollers</x-ui.badge>
|
@elseif($product->type === 'clothing') <x-ui.badge color="blue">INDUMENTARIA</x-ui.badge>
|
||||||
@elseif($product->type === 'skate') <x-ui.badge color="orange">Skate</x-ui.badge>
|
@elseif($product->type === 'spare') <x-ui.badge color="gray">REPUESTO</x-ui.badge>
|
||||||
@else <x-ui.badge color="yellow">Accesorio / Otro</x-ui.badge> @endif
|
@elseif($product->type === 'children') <x-ui.badge color="pink">INFANTIL</x-ui.badge>
|
||||||
|
@elseif($product->type === 'rollers') <x-ui.badge color="purple">ROLLERS</x-ui.badge>
|
||||||
|
@elseif($product->type === 'skate') <x-ui.badge color="orange">SKATE</x-ui.badge>
|
||||||
|
@elseif($product->type === 'service') <x-ui.badge color="cyan">SERVICIO</x-ui.badge>
|
||||||
|
@else <x-ui.badge color="yellow">ACCESORIO / OTRO</x-ui.badge> @endif
|
||||||
|
</div>
|
||||||
|
<div class="text-base font-semibold text-neutral-900 dark:text-white">
|
||||||
|
{{ $product->name }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="px-6 py-4 font-mono">
|
|
||||||
|
<td class="px-6 py-4 font-mono text-base font-medium text-gray-600 dark:text-gray-400">
|
||||||
|
${{ number_format($product->cost, 2) }}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td class="px-6 py-4 font-mono text-base font-bold text-black dark:text-white">
|
||||||
${{ number_format($product->price, 2) }}
|
${{ number_format($product->price, 2) }}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="px-6 py-4 text-center">
|
<td class="px-6 py-4 text-center">
|
||||||
@if($product->stock_quantity < $product->min_stock_alert)
|
@if($product->stock_quantity <= $product->min_stock_alert)
|
||||||
<x-ui.badge color="red">{{ $product->stock_quantity }}</x-ui.badge>
|
<x-ui.badge color="red">{{ $product->stock_quantity }}</x-ui.badge>
|
||||||
@elseif($product->stock_quantity <= $product->min_stock_alert+5)
|
@elseif($product->stock_quantity <= $product->min_stock_alert+5)
|
||||||
<x-ui.badge color="yellow">{{ $product->stock_quantity }}</x-ui.badge>
|
<x-ui.badge color="yellow">{{ $product->stock_quantity }}</x-ui.badge>
|
||||||
@@ -110,33 +105,29 @@
|
|||||||
<x-ui.badge color="green">{{ $product->stock_quantity }}</x-ui.badge>
|
<x-ui.badge color="green">{{ $product->stock_quantity }}</x-ui.badge>
|
||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td class="px-6 py-4 text-right flex items-center gap-2 justify-end">
|
|
||||||
<a href="{{ route('productos.show', $product) }}" title="Ver Mas" class="font-semibold p-2 text-green-700 dark:text-green-400 border-2 border-green-700 rounded-lg hover:bg-green-700 dark:hover:bg-green-600 dark:hover:border-green-600 hover:text-white dark:hover:text-white transition-colors">
|
<td class="px-6 py-4 text-right">
|
||||||
<svg class="size-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
<div class="flex items-center gap-2 justify-end">
|
||||||
<path stroke="currentColor" stroke-width="2" d="M21 12c0 1.2-4.03 6-9 6s-9-4.8-9-6c0-1.2 4.03-6 9-6s9 4.8 9 6Z"/>
|
<a href="{{ route('productos.show', $product) }}" title="Ver Mas" class="font-semibold p-2 text-green-700 dark:text-green-400 border-2 border-green-700 rounded-lg hover:bg-green-700 dark:hover:bg-green-600 dark:hover:border-green-600 hover:text-white dark:hover:text-white transition-colors">
|
||||||
<path stroke="currentColor" stroke-width="2" d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"/>
|
<svg class="size-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" d="M21 12c0 1.2-4.03 6-9 6s-9-4.8-9-6c0-1.2 4.03-6 9-6s9 4.8 9 6Z"/><path stroke="currentColor" stroke-width="2" d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"/></svg>
|
||||||
</svg>
|
</a>
|
||||||
</a>
|
<a href="{{ route('productos.edit', $product) }}" title="Editar" class="font-semibold p-2 text-blue-800 dark:text-blue-400 border-2 border-blue-800 rounded-lg hover:bg-blue-800 hover:text-white dark:hover:text-white transition-colors">
|
||||||
<a href="{{ route('productos.edit', $product) }}" title="Editar" class="font-semibold p-2 text-blue-800 dark:text-blue-400 border-2 border-blue-800 rounded-lg hover:bg-blue-800 hover:text-white dark:hover:text-white transition-colors">
|
<svg class="size-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m14.304 4.844 2.852 2.852M7 7H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-4.5m2.409-9.91a2.017 2.017 0 0 1 0 2.853l-6.844 6.844L8 14l.713-3.565 6.844-6.844a2.015 2.015 0 0 1 2.852 0Z"/></svg>
|
||||||
<svg class="size-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
</a>
|
||||||
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m14.304 4.844 2.852 2.852M7 7H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-4.5m2.409-9.91a2.017 2.017 0 0 1 0 2.853l-6.844 6.844L8 14l.713-3.565 6.844-6.844a2.015 2.015 0 0 1 2.852 0Z"/>
|
<form action="{{route('productos.destroy',$product)}}" method="post">
|
||||||
</svg>
|
@csrf
|
||||||
</a>
|
@method('DELETE')
|
||||||
<form action="{{route('productos.destroy',$product)}}" method="post">
|
<button title="Eliminar" type="submit" class="w-full sm:w-auto p-2 font-bold dark:font-medium text-red-600 dark:text-red-400 border-2 border-red-600 rounded-lg hover:bg-red-600 hover:text-white dark:hover:text-white transition-colors">
|
||||||
@csrf
|
<svg class="size-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 7h14m-9 3v8m4-8v8M10 3h4a1 1 0 0 1 1 1v3H9V4a1 1 0 0 1 1-1ZM6 7h12v13a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7Z"/></svg>
|
||||||
@method('DELETE')
|
</button>
|
||||||
<button title="Eliminar" type="submit" class="w-full sm:w-auto p-2 font-bold dark:font-medium text-red-600 dark:text-red-400 border-2 border-red-600 rounded-lg hover:bg-red-600 hover:text-white dark:hover:text-white transition-colors">
|
</form>
|
||||||
<svg class="size-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
</div>
|
||||||
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 7h14m-9 3v8m4-8v8M10 3h4a1 1 0 0 1 1 1v3H9V4a1 1 0 0 1 1-1ZM6 7h12v13a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7Z"/>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@empty
|
@empty
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5" class="px-6 py-10 text-center font-semibold">
|
<td colspan="5" class="px-6 py-10 text-center font-semibold text-gray-500">
|
||||||
No se encontraron productos.
|
No se encontraron productos en la base de datos.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endforelse
|
@endforelse
|
||||||
@@ -144,8 +135,108 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Paginación -->
|
<div class="flex items-center justify-between px-4 py-3 bg-gray-200 dark:bg-neutral-900 border border-gray-400 dark:border-neutral-800 rounded-lg">
|
||||||
<div class="mt-4 w-full">
|
<div class="text-sm text-gray-700 dark:text-gray-400 font-semibold" id="pagination-info">
|
||||||
{{ $products->links() }}
|
Cargando productos...
|
||||||
|
</div>
|
||||||
|
<div class="flex gap-2">
|
||||||
|
<button id="btn-prev" class="px-4 py-2 text-sm font-bold text-gray-700 dark:text-gray-300 bg-white dark:bg-neutral-800 border border-gray-400 dark:border-neutral-600 rounded-lg hover:bg-gray-100 dark:hover:bg-neutral-700 transition-colors">
|
||||||
|
Anterior
|
||||||
|
</button>
|
||||||
|
<button id="btn-next" class="px-4 py-2 text-sm font-bold text-gray-700 dark:text-gray-300 bg-white dark:bg-neutral-800 border border-gray-400 dark:border-neutral-600 rounded-lg hover:bg-gray-100 dark:hover:bg-neutral-700 transition-colors">
|
||||||
|
Siguiente
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const searchInput = document.getElementById('searchInput');
|
||||||
|
const typeFilter = document.getElementById('typeFilter');
|
||||||
|
const stockFilter = document.getElementById('stockFilter');
|
||||||
|
const rows = Array.from(document.querySelectorAll('.product-row'));
|
||||||
|
|
||||||
|
const paginationInfo = document.getElementById('pagination-info');
|
||||||
|
const btnPrev = document.getElementById('btn-prev');
|
||||||
|
const btnNext = document.getElementById('btn-next');
|
||||||
|
|
||||||
|
// Configuración de la paginación
|
||||||
|
let currentPage = 1;
|
||||||
|
const itemsPerPage = 10; // Cambiá este número si querés mostrar 15 o 20 por página
|
||||||
|
let filteredRows = [...rows]; // Al principio, todas las filas están "filtradas"
|
||||||
|
|
||||||
|
function aplicarFiltros() {
|
||||||
|
const term = searchInput.value.toLowerCase();
|
||||||
|
const type = typeFilter.value;
|
||||||
|
const stock = stockFilter.value;
|
||||||
|
|
||||||
|
// Guardamos en un array nuevo solo las filas que cumplen las condiciones
|
||||||
|
filteredRows = rows.filter(row => {
|
||||||
|
const name = row.dataset.name;
|
||||||
|
const rowType = row.dataset.type;
|
||||||
|
const qty = parseInt(row.dataset.stock);
|
||||||
|
const min = parseInt(row.dataset.min);
|
||||||
|
|
||||||
|
if (term !== '' && !name.includes(term)) return false;
|
||||||
|
if (type !== 'all' && rowType !== type) return false;
|
||||||
|
if (stock === 'low' && qty > min) return false;
|
||||||
|
if (stock === 'medium' && (qty <= min || qty > min + 5)) return false;
|
||||||
|
if (stock === 'ok' && qty <= min + 5) return false;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Siempre que filtramos, volvemos a la página 1
|
||||||
|
currentPage = 1;
|
||||||
|
renderPage();
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderPage() {
|
||||||
|
// 1. Ocultamos todas las filas por las dudas
|
||||||
|
rows.forEach(row => row.style.display = 'none');
|
||||||
|
|
||||||
|
// 2. Calculamos qué filas mostrar según la página
|
||||||
|
const start = (currentPage - 1) * itemsPerPage;
|
||||||
|
const end = start + itemsPerPage;
|
||||||
|
const rowsToShow = filteredRows.slice(start, end);
|
||||||
|
|
||||||
|
// 3. Mostramos solo las que tocan
|
||||||
|
rowsToShow.forEach(row => row.style.display = '');
|
||||||
|
|
||||||
|
// 4. Actualizamos los textos y botones
|
||||||
|
const totalPages = Math.ceil(filteredRows.length / itemsPerPage) || 1;
|
||||||
|
paginationInfo.innerText = `Página ${currentPage} de ${totalPages} (${filteredRows.length} resultados)`;
|
||||||
|
|
||||||
|
// Habilitar/Deshabilitar botones
|
||||||
|
btnPrev.disabled = currentPage === 1;
|
||||||
|
btnNext.disabled = currentPage === totalPages;
|
||||||
|
|
||||||
|
// Le damos estilo de "bloqueado" a los botones cuando corresponda
|
||||||
|
btnPrev.classList.toggle('opacity-50', btnPrev.disabled);
|
||||||
|
btnPrev.classList.toggle('cursor-not-allowed', btnPrev.disabled);
|
||||||
|
btnNext.classList.toggle('opacity-50', btnNext.disabled);
|
||||||
|
btnNext.classList.toggle('cursor-not-allowed', btnNext.disabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
function changePage(delta) {
|
||||||
|
const totalPages = Math.ceil(filteredRows.length / itemsPerPage) || 1;
|
||||||
|
const newPage = currentPage + delta;
|
||||||
|
|
||||||
|
if (newPage >= 1 && newPage <= totalPages) {
|
||||||
|
currentPage = newPage;
|
||||||
|
renderPage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(searchInput) {
|
||||||
|
searchInput.addEventListener('input', aplicarFiltros);
|
||||||
|
typeFilter.addEventListener('change', aplicarFiltros);
|
||||||
|
stockFilter.addEventListener('change', aplicarFiltros);
|
||||||
|
|
||||||
|
btnPrev.addEventListener('click', () => changePage(-1));
|
||||||
|
btnNext.addEventListener('click', () => changePage(1));
|
||||||
|
|
||||||
|
// Inicializar la tabla apenas carga la página
|
||||||
|
renderPage();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</x-layout>
|
</x-layout>
|
||||||
@@ -1,42 +1,100 @@
|
|||||||
<x-layout title="Lauck - Ver Producto">
|
<x-layout title="Lauck - Ver Producto">
|
||||||
|
|
||||||
|
<x-section-header subtitle="Inventario" title="Detalle de " highlight="Producto" />
|
||||||
|
|
||||||
<!-- Header -->
|
@php
|
||||||
<x-section-header subtitle="Producto" title=" " highlight="{{$product->name}}"/>
|
$proveedor = \App\Models\Supplier::find($product->suppliers_id);
|
||||||
|
|
||||||
|
// Mapeo para traducir el tipo de producto al español
|
||||||
|
$tipos = [
|
||||||
|
'accessory' => 'Accesorio',
|
||||||
|
'bike' => 'Bicicleta',
|
||||||
|
'clothing' => 'Indumentaria',
|
||||||
|
'spare' => 'Repuesto',
|
||||||
|
'children' => 'Infantil',
|
||||||
|
'rollers' => 'Rollers',
|
||||||
|
'skate' => 'Skate',
|
||||||
|
'service' => 'Servicio',
|
||||||
|
'other' => 'Otro'
|
||||||
|
];
|
||||||
|
$tipoTraducido = $tipos[$product->type] ?? 'Desconocido';
|
||||||
|
@endphp
|
||||||
|
|
||||||
<div class="w-full min-h-7/12 mx-auto px-4 my-5 flex flex-col gap-5 items-center justify-center">
|
<div class="w-full max-w-4xl mx-auto bg-gray-200 dark:bg-panel-bg border border-neutral-400 dark:border-neutral-800 rounded-xl p-8 shadow-lg mb-10">
|
||||||
<dl class="w-lg text-gray-900 dark:text-white *:border-b *:border-gray-200 *:dark:border-gray-400">
|
|
||||||
<div class="flex flex-col pt-3">
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-6">
|
||||||
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">Marca</dt>
|
|
||||||
<dd class="text-lg font-semibold">{{$product->name}}</dd>
|
<div class="md:col-span-4">
|
||||||
|
<x-forms.label for="name" value="Nombre del Producto" />
|
||||||
|
<div class="bg-gray-300/50 dark:bg-neutral-800/50 border border-neutral-400/50 dark:border-neutral-700/50 text-gray-900 dark:text-gray-100 text-sm rounded-lg block w-full p-2.5 font-semibold">
|
||||||
|
{{ $product->name }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col pt-3">
|
|
||||||
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">SKU</dt>
|
<div class="md:col-span-2">
|
||||||
<dd class="text-lg font-semibold">{{$product->sku}}</dd>
|
<x-forms.label for="suppliers_id" value="Proveedor" />
|
||||||
|
<div class="bg-gray-300/50 dark:bg-neutral-800/50 border border-neutral-400/50 dark:border-neutral-700/50 text-gray-900 dark:text-gray-100 text-sm rounded-lg block w-full p-2.5 font-semibold">
|
||||||
|
{{ $proveedor ? $proveedor->name : 'Proveedor no asignado' }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col pt-3">
|
|
||||||
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">Descripcion</dt>
|
<div class="md:col-span-2">
|
||||||
<dd class="text-lg font-semibold">{{$product->description}}</dd>
|
<x-forms.label for="type" value="Tipo de Producto" />
|
||||||
|
<div class="bg-gray-300/50 dark:bg-neutral-800/50 border border-neutral-400/50 dark:border-neutral-700/50 text-gray-900 dark:text-gray-100 text-sm rounded-lg block w-full p-2.5 font-semibold uppercase tracking-wider">
|
||||||
|
{{ $tipoTraducido }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col pt-3">
|
|
||||||
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">Costo</dt>
|
<div class="md:col-span-2">
|
||||||
<dd class="text-lg font-semibold">{{$product->cost}}</dd>
|
<x-forms.label for="price" value="Precio Venta" />
|
||||||
|
<div class="bg-gray-300/50 dark:bg-neutral-800/50 border border-neutral-400/50 dark:border-neutral-700/50 text-green-700 dark:text-neon-lime text-lg rounded-lg block w-full p-2.5 font-black font-mono">
|
||||||
|
${{ number_format($product->price, 2, ',', '.') }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col pt-3">
|
|
||||||
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">Precio</dt>
|
<div class="md:col-span-2">
|
||||||
<dd class="text-lg font-semibold">{{$product->price}}</dd>
|
<x-forms.label for="stock_quantity" value="Cantidad Actual" />
|
||||||
|
<div class="bg-gray-300/50 dark:bg-neutral-800/50 border border-neutral-400/50 dark:border-neutral-700/50 text-gray-900 dark:text-gray-100 text-sm rounded-lg block w-full p-2.5 font-bold flex items-center gap-2">
|
||||||
|
{{ $product->stock_quantity }} unidades
|
||||||
|
|
||||||
|
@if($product->stock_quantity <= $product->min_stock_alert)
|
||||||
|
<span class="text-xs bg-red-600 text-white px-2 py-0.5 rounded uppercase shadow-sm shadow-red-900/50">¡Bajo Stock!</span>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col pt-3">
|
|
||||||
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">Cantidad en Stock</dt>
|
<div class="md:col-span-4">
|
||||||
<dd class="text-lg font-semibold">{{$product->stock_quantity}}</dd>
|
<x-forms.label for="description" value="Descripción / Notas" />
|
||||||
|
<div class="bg-gray-300/50 dark:bg-neutral-800/50 border border-neutral-400/50 dark:border-neutral-700/50 text-gray-800 dark:text-gray-300 text-sm rounded-lg block w-full p-4 min-h-[80px] leading-relaxed">
|
||||||
|
{{ $product->description ?: 'No hay descripción cargada para este producto.' }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col pt-3">
|
|
||||||
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">Tipo</dt>
|
<div class="md:col-span-4">
|
||||||
<dd class="text-lg font-semibold">{{$product->type}}</dd>
|
<x-forms.label for="image" value="Fotografía del Producto" />
|
||||||
|
<div class="mt-2">
|
||||||
|
@if($product->image_path)
|
||||||
|
<img src="{{ asset('storage/' . $product->image_path) }}" alt="{{ $product->name }}" class="w-full max-w-sm rounded-lg border border-neutral-400 dark:border-neutral-700 shadow-md">
|
||||||
|
@else
|
||||||
|
<div class="w-full max-w-sm h-40 bg-gray-300 dark:bg-neutral-800 border-2 border-dashed border-gray-400 dark:border-neutral-600 rounded-lg flex flex-col items-center justify-center text-gray-500">
|
||||||
|
<svg class="w-8 h-8 mb-2 opacity-50" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"/></svg>
|
||||||
|
<span class="text-sm font-semibold">Sin imagen asignada</span>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</dl>
|
|
||||||
<div class="flex gap-5">
|
|
||||||
<a href="{{route('productos.index')}}" class="w-full sm:w-auto p-2 rounded-lg text-stone-500 border-2 border-stone-500 font-semibold hover:text-white hover:bg-stone-500">Volver</a>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="flex items-center justify-between md:justify-end space-x-4 border-t border-neutral-400 dark:border-neutral-700 pt-6">
|
||||||
|
<a href="{{ route('productos.index') }}" class="text-gray-800 dark:text-gray-400 hover:text-black hover:dark:text-white font-medium text-sm transition-colors">
|
||||||
|
Volver al listado
|
||||||
|
</a>
|
||||||
|
<a href="{{ route('productos.edit', $product) }}" class="px-6 py-2.5 bg-neutral-900 dark:bg-neon-lime text-neon-lime dark:text-neutral-900 font-bold rounded-lg hover:bg-neutral-800 hover:dark:bg-[#b3e600] transition-colors shadow-lg dark:shadow-neon-lime/20 flex items-center gap-2">
|
||||||
|
<svg class="w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m14.304 4.844 2.852 2.852M7 7H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-4.5m2.409-9.91a2.017 2.017 0 0 1 0 2.853l-6.844 6.844L8 14l.713-3.565 6.844-6.844a2.015 2.015 0 0 1 2.852 0Z"/></svg>
|
||||||
|
Editar Producto
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</x-layout>
|
</x-layout>
|
||||||
Reference in New Issue
Block a user