@if($deliveryInstructions = $this->shippingAddress?->delivery_instructions)
{{ __('adminhub::global.delivery_instructions') }}:

{{ $deliveryInstructions }}

@endif
{{ __('adminhub::global.notes') }}:

@if ($order->notes) {{ $order->notes }} @else {{ __('adminhub::partials.orders.totals.notes_empty') }} @endif

{{ __('adminhub::partials.orders.totals.sub_total') }}
{{ $order->sub_total->formatted }}
{{ __('adminhub::partials.orders.totals.discount_total') }}
-{{ $order->discount_total->formatted }}
{{ __('adminhub::partials.orders.totals.shipping_total') }}
{{ $order->shipping_total->formatted }}
@foreach ($order->tax_breakdown as $tax)
{{ $tax->description }}
{{ $tax->total->formatted }}
@endforeach
{{ __('adminhub::partials.orders.totals.total') }}
{{ $order->total->formatted }}