Price ({{$order->items->count()}} Items)
{{ ($order->order_type == RESERVATION_TYPE_POINT_VAULT) ? currencyToPointConversion(config('app.currency_symbol').' '. \Number::format(floor($order->total_amount), locale: $paymentSettings->currency_locale)) : config('app.currency_symbol').' '. \Number::format(floor($order->total_amount), locale: $paymentSettings->currency_locale) }}
@if ($order->order_type != RESERVATION_TYPE_POINT_VAULT)
Discount
{{ config('app.currency_symbol').' '. \Number::format(floor($order->discount_amount), locale: $paymentSettings->currency_locale) }}
@endif
@if ($order->order_type != RESERVATION_TYPE_POINT_VAULT)
Delivery Charges
Free
@endif
Total {{ ($order->order_type != RESERVATION_TYPE_POINT_VAULT) ? 'Amount' : 'Points'}}
{{ ($order->order_type == RESERVATION_TYPE_POINT_VAULT) ? currencyToPointConversion(config('app.currency_symbol').' '. \Number::format(floor($order->subtotal_amount), locale: $paymentSettings->currency_locale)) : config('app.currency_symbol').' '. \Number::format(floor($order->subtotal_amount), locale: $paymentSettings->currency_locale) }}