@extends('layouts.app') @section('title', 'Detalles de Factura de Venta') @section('content')
| Producto | Cantidad | Precio Unit. | Descuento | Total |
|---|---|---|---|---|
|
{{ $detail->product->name ?? 'N/A' }} {{ $detail->product->code ?? 'N/A' }} |
{{ number_format($detail->quantity_ordered ?? $detail->quantity ?? 0, 2) }} |
${{ number_format($unitPriceUSD, 2) }}
@if($isMultiCurrency)
{{ number_format($unitPriceLocal, 2) }} {{ $invoice->currency }} @endif |
${{ number_format($discountUSD, 2) }}
@if($isMultiCurrency)
{{ number_format($discountLocal, 2) }} {{ $invoice->currency }} @endif |
${{ number_format($totalPriceUSD, 2) }}
@if($isMultiCurrency)
{{ number_format($totalPriceLocal, 2) }} {{ $invoice->currency }} @endif |
| No hay productos | ||||
{{ $invoice->notes }}