@extends('default.layout') @section('content')
| Produto | Unidade | Quantidade | R$ Total |
|---|---|---|---|
| {{$i->produto->nome}} | {{$i->produto->unidade_venda}} | {{number_format($i->qtd, 2, ',', '.')}} | {{ number_format($i->total, 2, ',', '.') }} | @php $somaValor += $i->total; $somaQuantidade += $i->quantidade; @endphp