{{-- subtotal --}}

{{ __('Subtotal') }}

{{ currencyFormat($order->sub_total) }}
{{-- discount --}}

{{ __('Discount') }}

{{ currencyFormat($order->discount) }}
{{-- delivery fee --}}

{{ __('Delivery fee') }}

{{ currencyFormat($order->delivery_fee) }}
{{-- tax --}}

{{ __('Tax') }}

{{ currencyFormat($order->tax) }}
{{-- order fees --}} @if (!empty(json_decode($order->fees ?? []) ?? [])) {{-- liner --}}
@foreach (json_decode($order->fees ?? []) as $orderFee)

{{ $orderFee->name ?? __('Fee') }}

{{ currencyFormat($orderFee->amount) }}
@endforeach
@endif