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