{{ __('sales::filament/clusters/orders/resources/quotation.table.columns.untaxed-amount') }}
{{ money($subtotal, $currency?->name) }}
@if ($totalTax > 0)
{{ __('sales::filament/clusters/orders/resources/quotation.table.columns.amount-tax') }}
{{ money($totalTax, $currency?->name) }}
@endif
{{ __('sales::filament/clusters/orders/resources/quotation.table.columns.amount-total') }}
{{ money($grandTotal, $currency?->name) }}
@if ($enableMargin && $margin > 0)
{{ __('sales::filament/clusters/orders/resources/quotation.form.tabs.order-line.repeater.products.fields.margin') }}
{{ money($margin, $currency?->name) }} ({{ number_format($marginPercentage, 1) }}%)
@endif