{{-- header section --}}

Back to My Orders

Order ID: #{{$order->order_number}}

@if (!$isOrderCancel) Cancel My Order @endif
{{-- order section --}}
{{-- card section --}} {{-- summary section --}}

Order Summary

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) }}

Payment Information

@if ($order->order_type != RESERVATION_TYPE_POINT_VAULT)

Payment Method

{{ \Str::title($order->payment_method) }}

@endif

Date of processing

{{ \Str::title(\Carbon\Carbon::parse($order->created_at)->format('d M Y h:m a') ) }}

Shipping Information

{{ $order->contact_name }}{{$order->shipping_address}}

Phone Number

{{ $order->contact_phone_number }}

{{-- cancellation section --}}