Hello Admin,
A customer has submitted a request to cancel order #{{ $order->payment_order_id }}. Please review the details below and take the necessary action in the admin panel.
Request Details
Customer: {{ $customer_name }}
Customer's Reason:
{{ $cancellation_reason }}
Original Order Summary
| Item | Qty | Total |
|---|---|---|
| {{ $item->product_name }} | {{ $item->quantity }} | ₹{{ amountFormat($line_total_inclusive) }} |
| No items found in this order. | ||
| Subtotal | ₹{{ amountFormat($total_taxable_value + $total_gst_amount) }} |
|---|---|
| Shipping | ₹{{ amountFormat($order->shipping_cost) }} |
| Branding Charges | ₹{{ amountFormat($order->branding_cost) }} |
| Coupon Discount | - ₹{{ amountFormat($order->coupon_amount) }} |
| Coin Discount | - ₹{{ amountFormat($order->coin_cost * $order->coins) }} |
| Original Grand Total | @php $grand_total = $total_taxable_value + $total_gst_amount + $order->shipping_cost + $order->branding_cost - $order->coupon_amount - ($order->coin_cost * $order->coins); @endphp ₹{{ amountFormat(max(0, $grand_total)) }} |