{{ $venta->codigo }} - {{ $venta->created_at->format('d/m/Y H:i') }}
{{ $venta->codigo }}
{{ $venta->cliente->name ?? 'Cliente general' }}
{{ $venta->created_at->format('d/m/Y H:i:s') }}
{{ $venta->usuario->name }}
| Producto | Cantidad | Precio Unit. | Subtotal |
|---|---|---|---|
|
{{ $detalle->nombre_producto }}
{{ $detalle->codigo_producto }}
@if($detalle->variante)
{{ $detalle->variante->name }}
@endif
|
{{ $detalle->cantidad }} | {{ format_money($detalle->precio_unitario) }} | {{ format_money($detalle->subtotal) }} |
| Total: | {{ format_money($venta->total) }} | ||