@if($orderFinancials['hasAdjustments'])
Subtotal
{!! $currencySymbol !!}{!! $orderFinancials['subtotalFormatted'] !!}
@if($orderFinancials['taxCents'] > 0)
Tax
{!! $currencySymbol !!}{!! $orderFinancials['taxFormatted'] !!}
@endif @if($orderFinancials['serviceChargeTotalCents'] > 0) @foreach($orderFinancials['serviceChargeRows'] as $serviceCharge)
{{ $serviceCharge['label'] }}
{!! $currencySymbol !!}{{ $serviceCharge['formatted'] }}
@endforeach @endif @if($orderFinancials['promotionTotalCents'] > 0)
Promo @foreach($orderFinancials['promotionRows'] as $promotion) {{ $promotion['label'] }} @endforeach
{{ count($orderFinancials['promotionRows']) }} Applied @foreach($orderFinancials['promotionRows'] as $promotion) - {!! $currencySymbol !!}{{ $promotion['formatted'] }} @endforeach
@endif @if($orderFinancials['discountTotalCents'] > 0)
Discount @foreach($orderFinancials['discountRows'] as $discount) {{ $discount['label'] }} @endforeach
- {!! $currencySymbol !!}{!! $orderFinancials['discountTotalFormatted'] !!}
@endif
@endif