@foreach($order->itens as $item) @endforeach
# Produto Quant. Valor (R$) Total (R$)
{{ $cont }} {{ $item->product->product_name . ' - ' . $item->product->size }} {{ $item->quantity }} {{ number_format($item->price, 2, ',', '.') }} {{ number_format($item->quantity * $item->price, 2, ',', '.') }}
SUBTOTAL (R$): {{ number_format($subtotal, 2, ',', '.') }}
FRETE (R$): {{ number_format($order->freight, 2, ',', '.') }}
DESCONTO (R$): {{ number_format($order->discount, 2, ',', '.') }}
TOTAL (R$): {{ number_format($subtotal + $order->freight - $order->discount, 2, ',', '.') }}