@php $cont = 0; $totalValor = 0; @endphp @foreach($products as $product) @php $cont++; @endphp @php $totalValor += $product['total']; @endphp @endforeach
# Produto Quantidade Valor Total (R$)
{{ $cont }} {{ $product['name'] }} {{ $product['quantity'] }} {{ number_format($product['total'], 2, ',', '.') }}
TOTAL (R$): {{ number_format($totalValor, 2, ',', '.') }}