@extends('app') @section('content')
| Producto | Cantidad | Precio unitario | Subtotal | Notas |
|---|---|---|---|---|
| {{ $item->nombreProducto }} | {{ $item->cantidad }} | ${{ number_format($item->precio_unitario, 0, ',', '.') }} | ${{ number_format($item->subtotal, 0, ',', '.') }} | {{ $item->notas_item }} |
Total a pagar: ${{ number_format($pedido->items->sum('subtotal'), 0, ',', '.') }}