{{__('Invoice Information')}}

{{__('Sub Totals')}}
{{$order->subtotal}} {{__("JD")}}
{{__('Tax')}}
{{$order->tax}} {{__("JD")}}
{{__('Delivery')}}
{{$order->delivery ? $order->delivery : 0 }} {{__("JD")}}
@if($order->coupon)
{{__('Discount')}}
{{$order->getDiscount()}} {{__("JD")}}
@endif
{{__('Total Amount')}}
{{$order->subtotal + $order->delivery + $order->tax}} {{__("JD")}}
{{--
{{($order->subtotal - $order->getDiscount()) + $order->delivery + $order->tax}} {{__("JD")}}
--}}