@php $title = 'Receber Compra'; @endphp
| # | Produto | Quantidade | Unidade | Valor Unit. | Valor Total |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->produto->codigo }} - {{ $item->produto->nome }} | {{ number_format($item->quantidade, 0, ',', '.') }} | {{ $item->unidade->unidade }} | R$ {{ number_format($item->valor_unitario, 2, ',', '.') }} | R$ {{ number_format($item->valor_total, 2, ',', '.') }} |
| TOTAL: | R$ {{ number_format($compra->valor_total, 2, ',', '.') }} | ||||