@extends('main.template') @section('content')
| Descrição | Desconto | QTD | IVA | PreçoUni | Total Sem Iva | Total |
|---|---|---|---|---|---|---|
| {{ $detail->description }} ({{ $detail->external_id }}) | {{ $detail->getDiscountAmount() }}€ ({{ $detail->discount }}) | {{ $detail->qty }} | {{ $detail->iva }}% | {{ $detail->total_s_iva }} € | {{ $detail->getRowPriceNoVatNoDiscount() }} € | {{ $detail->getRowTotalWithVatWithDiscount() }} € |
| Observações: | {{$order->comment}} | |||||
| Desconto | {{ $details->sum(function($detail) { return $detail->getDiscountAmount(); }) }} € | |||||
| Total Sem Iva | {{ $details->sum(function($detail) { return $detail->getRowTotalWithDiscountNoVat(); }) }}€ | |||||
| Total Com Iva | {{ $details->sum(function($detail) { return $detail->getRowTotalWithVatWithDiscount(); }) }}€ | |||||