@foreach ($orderData->requestedDishes as $keyDishes => $itemDishesLocal)
|
{{$itemDishesLocal->name}}
|
|
{{$orderData->currency}}{{number_format($itemDishesLocal->value, 2, ',', '.')}} |
{{$orderData->currency}}{{number_format($itemDishesLocal->totalValue, 2, ',', '.')}} |
@endforeach
@foreach ($orderData->dishes as $itemPlato)
@if($itemPlato->idEstado != 45)
@else
@endif
|
{{$itemPlato->nombreProducto}}
|
|
{{$orderData->currency}}{{number_format($itemPlato->valorNeto, 2, ',', '.')}} |
{{$orderData->currency}}{{number_format($itemPlato->valorTotal, 2, ',', '.')}} |
@endforeach