@extends('layouts.app') @section('content')

🛒 Ventas Registradas

➕ Realizar Venta
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@endif
a
🔄 Reiniciar
@csrf

📄 Registro de Ventas

@forelse($ventas as $index => $venta) @empty @endforelse
# Producto Código 1 Código 2 Descripción Usuario Sucursal Cantidad Precio Unitario (Bs.) Tipo de Precio Total (Bs.) Fecha Hora
{{ $ventas->firstItem() + $index }} {{ $venta->producto->nombre }} {{ $venta->producto->codigo1 }} {{ $venta->producto->codigo2 }} {{ $venta->producto->descripcion }} {{ $venta->usuario->name }} {{ $venta->ubicacion->nombre }} {{ $venta->cantidad }} {{ number_format($venta->precio * $tipoCambio, 2) }} @if($venta->precio == $venta->producto->precio2) Precio regular @elseif($venta->precio == $venta->producto->precio3) Precio en oferta @else Otro @endif {{ number_format($venta->precio_total * $tipoCambio, 2) }} {{ \Carbon\Carbon::parse($venta->fecha)->format('d/m/Y') }} {{ \Carbon\Carbon::parse($venta->hora)->subHours(4)->format('H:i:s') }}
No hay ventas registradas.
{{ $ventas->appends(request()->query())->links() }}
@endsection