@extends('layouts.app') @section('content')

{{trans('lang.order_plural')}}|{{trans('lang.order_desc')}}

@include('orders.show_fields')
@include('product_orders.table')
{{trans('lang.order_subtotal')}} {!! getPrice($subtotal) !!}
{{trans('lang.order_delivery_fee')}} {!! getPrice($order['delivery_fee'])!!}
{{trans('lang.order_tax')}} ({!!$order->tax!!}%) {!! getPrice($subtotal * $order->tax/100)!!}
{{trans('lang.order_total')}} {!!getPrice($total)!!}
@endsection @push('scripts') @endpush