@extends('default.layout') @section('content')
| Produto | Quantidade | Valor unitário | Total |
|---|---|---|---|
|
|
{{$i->quantidade}} | R$ {{ number_format($i->valor, 2, ',', '.') }} | R$ {{ number_format($i->quantidade*$i->valor, 2, ',', '.') }} |
| PAGAMENTO STATUS | ENVIO STATUS | DESCONTO | TOTAL |
|---|---|---|---|
| {{$pedido->status_pagamento}} | {{$pedido->status_envio}} | R$ {{ number_format($pedido->desconto, 2, ',', '.')}} | R$ {{ number_format($pedido->total, 2, ',', '.')}} |