{{ __('Invoice Information') }}

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