@extends('master') @section('title') Orden: {{ $order->onumber }} @stop @section('custom_js_files') @stop @section('content')

Orden: {{ $order->onumber }} | Restaurante: {{ $order->getShop->name }}

@if($order->getItems->count() > 0)
@foreach($order->getItems as $item) @endforeach @if($order->otype == "0") @endif @if($order->otype == "0" || $order->otype == "2") @endif @if($order->coupon_id) @endif
Producto Subtotal Extras Total
@if($item->getProduct->file_name) @else @endif {!! $item->label !!} @if($item->discount > 0) | {{ $item->discount }}% Descuento @endif @include('components.product_options_extras') {{ number($item->price) }} @if($item->discount > 0) | {{ number($item->original_price) }} @endif {{ number($item->extras_amount) }} {{ number($item->itotal) }}
Subtotal: {{ number($order->subtotal) }}
Delivery: {{ number($order->delivery_price) }}
Propina: {{ number($order->tip_amount) }}
Cupón ({{ $order->getCoupon->name }}): {{ number($order->coupon_value) }}
Total: {{ number($order->ototal) }}
@endif

¿Como desea su orden?

@if($order->otype == "0")

¿A dónde lo enviamos?

  • Barrio/colonia o residencial: {{ $order->getAddr->neighborhood }}
  • Calle, Avenida, Bloque: {{ $order->getAddr->street }}
  • Casa #: {{ $order->getAddr->home_number }}
@if($order->getAddr->map) @endif
@endif

¿Factura con nombre?

Método de pago seleccionado

@endsection