@extends('default.layout') @section('content')
| Produto | Quantidade | Valor unitário | Total |
|---|---|---|---|
|
@if($i->image_url != "")
@else
@endif
{{ $i->nome_produto }}
|
{{ $i->quantidade }} | R$ {{ number_format($i->valor_unitario, 2, ',', '.') }} | R$ {{ number_format($i->total, 2, ',', '.') }} |
| STATUS | VALOR ENTREGA | VALOR PRODUTOS | TOTAL |
|---|---|---|---|
| @if($item->status == 'CAN') {{$item->status}} @else {{$item->status}} @endif | R$ {{ number_format($item->valor_entrega, 2, ',', '.')}} | R$ {{ number_format($item->valor_produtos, 2, ',', '.')}} | R$ {{ number_format($item->valor_total, 2, ',', '.')}} |
| FORMA PAGAMENTO | TIPO PAGAMENTO | VALOR |
|---|---|---|
| {{$p->forma_pagamento}} | {{$p->tipo_pagamento}} | R$ {{ number_format($p->valor, 2, ',', '.')}} |