@extends('master') @section('title') Orden: {{ $order->onumber }} @stop @section('custom_js_files') @stop @section('content')
| Producto | Subtotal | Extras | Total | |
@if($item->getProduct->file_name)
@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) }} | |||