@extends('layouts/app') @section('tituloModulo', 'PUNTO DE VENTA') @section('contenido')
| PRODUCTO | CANTIDAD | PRECIO UNITARIO | TOTAL | ACCIONES |
|---|---|---|---|---|
| {{ $item['nombreProduct'] }} | ${{ number_format($item['costo'], 2) }} | ${{ number_format($item['total'], 2) }} |
Total de Productos: {{ count($listaProductos) }}
Total a Pagar: ${{ number_format($totalAPagar, 2) }}