@extends("front/layout.master") @section('title', 'Order Placed Successfully |') @section('body')
{{ __('staticwords.orderplacedsuccesstext') }} #{{ app('request')->input('orderid') ?? '' }}
You will Receive an email when your order is ready.
{{ $user->email }}
{{ ucfirst($order->payment_method) }}
Sub Total : | {{ round($order->order_total + $order->discount - $order->gift_charge, 2) }} |
Coupon Discount: | {{ round($order->discount, 2) }} |
Gift Packaging Charge: | + {{ round($order->gift_charge, 2) }} |
Handling Charge: | + {{ round($order->handlingcharge, 2) }} |
Grand Total: |
{{ round($order->order_total + $order->handlingcharge, 2) }} |