@extends('layouts/app') @section('tituloModulo', 'PUNTO DE VENTA PRODUCTOS') @section('contenido') Regresar
Lista de productos
@foreach ($productos as $item) @endforeach
PRODUCTO CATEGORÍA SUBCATEGORÍA PRECIO UNITARIO CANTIDAD TOTAL
{{ $item->nombreProduct_pvpr }} {{ $item->categoriaProduct_pvpr }} {{ $item->subcategoriaProduct_pvpr }} ${{ number_format($item->costoProduct_pvpr, 2) }} {{ $item->cantidad_pvpr }} ${{ number_format($item->total_pvpr, 2) }}
Resumen del Carrito
Información del Cliente

ID Venta: {{ $venta->numero_pvve }}

Nombre: {{ $venta->nombre_pvve }}

Correo: {{ $venta->email_pvve }}

Detalles del Pago
  • Subtotal ${{ number_format($venta->subtotal_pvve, 2) }}
  • IVA ${{ number_format($venta->iva_pvve, 2) }}
  • Total ${{ number_format($venta->total_pvve, 2) }}
@endsection