| {{ __( 'Product' ) }} | {{ __( 'Qty.' ) }} | {{ __( 'Total' ) }} |
| {{ $product->name }} | {{ $product->quantity }} | {{ ns()->currency->define( $product->total_price ) }} |
| {{ __( 'Sub Total' ) }} | {{ ns()->currency->define( $order->subtotal ) }} | |
| {{ __( 'Discount' ) }} @if ( $order->discount_type === 'percentage' ) ({{ $order->discount_percentage }}%) @endif | {{ ns()->currency->define( $order->discount ) }} | |
| {{ __( 'Coupons' ) }} | {{ ns()->currency->define( $order->total_coupons ) }} | |
| {{ $tax->tax_name }} — {{ $order->tax_type === 'inclusive' ? __( 'Inclusive' ) : __( 'Exclusive' ) }} | {{ ns()->currency->define( $tax->tax_value ) }} | |
| {{ $order->tax_type === 'inclusive' ? __( 'Inclusive Product Taxes' ) : __( 'Exclusive Product Taxes' ) }} | {{ ns()->currency->define( $order->products_tax_value ) }} | |
| {{ __( 'Taxes' ) }} | {{ ns()->currency->define( $order->tax_value ) }} | |
| {{ $order->tax_type === 'inclusive' ? __( 'Inclusive Product Taxes' ) : __( 'Exclusive Product Taxes' ) }} | {{ ns()->currency->define( $order->products_tax_value ) }} | |
| {{ __( 'Shipping' ) }} | {{ ns()->currency->define( $order->shipping ) }} | |
| {{ __( 'Total' ) }} | {{ ns()->currency->define( $order->total ) }} | |
| {{ $paymentTypes[ $payment[ 'identifier' ] ] ?? __( 'Unknown Payment' ) }} | {{ ns()->currency->define( $payment[ 'value' ] ) }} | |
| {{ __( 'Paid' ) }} | {{ ns()->currency->define( $order->tendered ) }} | |
| {{ __( 'Refunded' ) }} | {{ ns()->currency->define( - $refund->total ) }} | |
| {{ __( 'Change' ) }} | {{ ns()->currency->define( $order->change ) }} | |
| {{ __( 'Due' ) }} | {{ ns()->currency->define( abs( $order->change ) ) }} | |
| {{ __( 'Save Gold' ) }} | {{ calculateDemoSaveGold($order->total, 'gold') }} mg | |
| {{ __( 'Cold Coin' ) }} | {{ calculateDemoSaveGold($order->total, 'coin') }} | |