{{ $notaVenta->numeroCompleto }} - {{ $notaVenta->fecha_emision->format('d/m/Y') }}
{{ $notaVenta->codigo }}
{{ $notaVenta->cliente->nombre_completo ?? 'Cliente general' }}
{{ $notaVenta->fecha_emision->format('d/m/Y H:i:s') }}
{{ $notaVenta->fecha_vencimiento->format('d/m/Y') }}
{{ $notaVenta->user->name }}
| Producto | Cantidad | Precio Unit. | Subtotal |
|---|---|---|---|
|
{{ $detalle->descripcion }}
@if($detalle->producto)
{{ $detalle->producto->code }}
@endif
@if($detalle->productoVariant)
{{ $detalle->productoVariant->name }}
@endif
|
{{ $detalle->cantidad }} | {{ format_money($detalle->precio_unitario) }} | {{ format_money($detalle->subtotal) }} |
| Total: | {{ format_money($notaVenta->total) }} | ||
{{ $notaVenta->observaciones }}