@extends('layouts.app') @section('title', 'Detalle de Venta') @section('header', 'Gestión de Ventas') @section('content')
{{ $venta->observaciones }}
| Código | Producto | Cantidad | Precio Unitario | Subtotal |
|---|---|---|---|---|
| {{ $detalle->producto->codigo }} |
{{ $detalle->producto->nombre }}
@if($detalle->producto->marca)
{{ $detalle->producto->marca }} @endif |
{{ number_format($detalle->cantidad, 0, ',', '.') }} | ${{ number_format($detalle->precio_unitario, 0, ',', '.') }} | ${{ number_format($detalle->subtotal, 0, ',', '.') }} |
| TOTAL: | ${{ number_format($venta->total, 0, ',', '.') }} | |||