@php
$combinedAmount = (float) ($combinedAmount ?? 0);
$orderAmount = (float) ($orderAmount ?? 0);
$deliveryAmount = (float) ($deliveryAmount ?? 0);
@endphp
{{ __('Order + Delivery') }}
{{ currencyFormat($combinedAmount) }}
{{ __('Order Amount (Subtotal)') }}
{{ currencyFormat($orderAmount) }}
{{ __('Delivery Fee') }}
{{ currencyFormat($deliveryAmount) }}