27da6df77b
- Terminada seccion de ventas, index
144 lines
9.1 KiB
PHP
144 lines
9.1 KiB
PHP
<x-layout title="Historial de Ventas">
|
|
|
|
<x-section-header subtitle="Finanzas" title="Historial de " highlight="Ventas" />
|
|
|
|
<div class="mb-6 bg-gray-200/50 dark:bg-neutral-800/50 p-4 rounded-xl border border-neutral-400 dark:border-neutral-800 shadow-sm">
|
|
<form action="{{ route('sales.index') }}" method="GET" class="grid grid-cols-1 md:grid-cols-12 gap-4 items-end">
|
|
|
|
<div class="md:col-span-3">
|
|
<x-forms.label value="N° Venta"/>
|
|
<div class="relative">
|
|
<div class="absolute inset-y-0 start-0 flex items-center ps-3 pointer-events-none">
|
|
<svg class="w-4 h-4 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>
|
|
</div>
|
|
<x-forms.input type="text" name="search" value="{{ request('search') }}" class="ps-10" placeholder="Ej: 1420"/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="md:col-span-4">
|
|
<x-forms.label value="Cliente"/>
|
|
<select name="client_id" class="w-full select2-filter">
|
|
<option value="">-- Todos --</option>
|
|
@foreach($clients as $client)
|
|
<option value="{{ $client->id }}" {{ request('client_id') == $client->id ? 'selected' : '' }}>
|
|
{{ $client->name }}
|
|
</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
|
|
<div class="md:col-span-2">
|
|
<x-forms.label value="Desde"/>
|
|
<x-forms.input type="date" name="date_from" value="{{ request('date_from') }}"/>
|
|
</div>
|
|
<div class="md:col-span-2">
|
|
<x-forms.label value="Hasta"/>
|
|
<x-forms.input type="date" name="date_to" value="{{ request('date_to') }}"/>
|
|
</div>
|
|
|
|
<div class="md:col-span-1 flex gap-2">
|
|
<button type="submit" class="w-full bg-neutral-900 hover:bg-neutral-800 text-neon-lime dark:bg-neon-lime dark:hover:bg-[#b3e600] dark:text-neutral-900 font-bold rounded-lg text-sm p-2.5 transition-colors shadow-lg dark:shadow-neon-lime/20 flex items-center justify-center" title="Aplicar Filtros">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
|
|
</svg>
|
|
</button>
|
|
|
|
@if(request()->hasAny(['search', 'client_id', 'date_from', 'date_to']))
|
|
<a href="{{ route('sales.index') }}" class="w-full hover:bg-red-600 hover:text-white text-red-600 border border-red-600 font-bold rounded-lg text-sm p-2.5 flex items-center justify-center transition-colors" title="Limpiar Filtros">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
|
</svg>
|
|
</a>
|
|
@endif
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="flex justify-end mb-6">
|
|
<a href="{{ route('sales.create') }}" class="px-6 py-2.5 border bg-neon-lime border-neutral-900 text-neutral-900 hover:text-neon-lime hover:bg-neutral-900 dark:bg-neutral-800 dark:border-neon-lime dark:text-neon-lime hover:dark:bg-neon-lime hover:dark:text-neutral-900 font-bold rounded-lg transition-all shadow-lg dark:shadow-neon-lime/10 flex items-center gap-2">
|
|
<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="M12 4v16m8-8H4"></path></svg>
|
|
Nueva Venta
|
|
</a>
|
|
</div>
|
|
<div class="relative overflow-x-auto shadow-md sm:rounded-lg border border-gray-400 dark:border-neutral-800">
|
|
<table class="w-full text-sm text-left 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">
|
|
<tr>
|
|
<th scope="col" class="px-6 py-3"># Ref</th>
|
|
<th scope="col" class="px-6 py-3">Fecha</th>
|
|
<th scope="col" class="px-6 py-3">Cliente</th>
|
|
<th scope="col" class="px-6 py-3">Método Pago</th>
|
|
<th scope="col" class="px-6 py-3 text-right">Total</th>
|
|
<th scope="col" class="px-6 py-3 text-center">Acciones</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse($sales as $sale)
|
|
<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">
|
|
<td class="px-6 py-4 font-mono font-bold">
|
|
#{{ str_pad($sale->id, 5, '0', STR_PAD_LEFT) }}
|
|
</td>
|
|
|
|
<td class="px-6 py-4 text-gray-600 dark:text-gray-300">
|
|
{{ $sale->created_at->format('d/m/Y H:i') }}
|
|
</td>
|
|
|
|
<td class="px-6 py-4">
|
|
@if($sale->client)
|
|
<div class="font-bold">{{ $sale->client->name }}</div>
|
|
<div class="text-xs text-gray-700 dark:text-gray-400">{{ $sale->client->phone ?? '' }}</div>
|
|
@else
|
|
<span class="italic text-gray-600 dark:text-gray-400">Consumidor Final</span>
|
|
@endif
|
|
</td>
|
|
|
|
<td class="px-6 py-4">
|
|
@php
|
|
$colors = [
|
|
'Efectivo' => 'text-white dark:text-green-400 bg-green-600/80 dark:bg-green-900/20 border-green-800',
|
|
'Transferencia' => 'text-white dark:text-blue-400 bg-blue-600/80 dark:bg-blue-900/20 border-blue-800',
|
|
'Tarjeta de Débito' => 'text-white dark:text-purple-400 bg-purple-600/80 dark:bg-purple-900/20 border-purple-800',
|
|
'Tarjeta de Crédito' => 'text-white dark:text-orange-400 bg-orange-600/80 dark:bg-orange-900/20 border-orange-800',
|
|
];
|
|
$badgeClass = $colors[$sale->payment_method] ?? 'bg-gray-400 dark:bg-gray-800 border-gray-700';
|
|
@endphp
|
|
<span class="{{ $badgeClass }} border px-2.5 py-0.5 rounded text-xs font-medium">
|
|
{{ $sale->payment_method }}
|
|
</span>
|
|
</td>
|
|
|
|
<td class="px-6 py-4 text-right font-bold text-lg text-zinc-900 dark:text-neon-lime">
|
|
${{ number_format($sale->total, 2) }}
|
|
</td>
|
|
|
|
<td class="px-6 py-4 text-center">
|
|
<a href="{{ route('sales.show', $sale) }}"
|
|
class="inline-flex items-center justify-center w-8 h-8 border-2 border-emerald-700 dark:border-green-600 rounded-4xl hover:bg-emerald-700 text-emerald-700 hover:dark:bg-green-600 dark:text-green-600 hover:text-white hover:dark:text-white transition-colors"
|
|
title="Ver Detalle">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
|
</svg>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
<td colspan="6" class="px-6 py-12 text-center text-gray-500">
|
|
<div class="flex flex-col items-center justify-center">
|
|
<svg class="w-12 h-12 mb-3 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg>
|
|
<p class="text-base">No se encontraron ventas registradas.</p>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="mt-4 w-full max-w-4xl">
|
|
{{ $sales->links() }}
|
|
</div>
|
|
</x-layout> |