@foreach($pedido->itens as $i)
{{$i->id}} |
{{ $i->produto->nome }}
|
@if(!empty($i->tamanho))
@else
@endif
|
@if(count($i->sabores) > 0)
@foreach($i->sabores as $key => $s)
{{$s->produto->produto->nome}}
@if($key < count($i->sabores)-1)
|
@endif
@endforeach
@else
@endif
|
@if(count($i->itensAdicionais) > 0)
@else
@endif
|
@if($i->status)
Feito
@else
Pendente
@endif
|
{{number_format($valorVenda, 2, ',', '.')}}
|
{{$temp->quantidade}}
|
{{number_format((($valorVenda * $i->quantidade) + $somaAdicionais), 2, ',', '.')}}
|
Ver
|
@endforeach