@extends('default.layout') @section('content')
Código | Produto | Quantidade | Valor Unitário | Subtotal |
---|---|---|---|---|
{{ $i->id }} | {{ $i->product->name }} | {{ $i->quantity }} | {{ number_format($i->value, 2, ',', '.') }} | {{ number_format($i->value * $i->quantity, 2, ',', '.') }} |
Total | {{ number_format($total, 2, ',', '.') }} |