{{ __("THANK YOU FOR YOUR ORDER.") }}
@php $linkSimplifiedCheckout = "*| " . __('New Order - Simplified Checkout') . " |*" . PHP_EOL.PHP_EOL; if($order->customer_name) { $linkSimplifiedCheckout .= "_*" . __("Name") . ": " . $order->customer_name . "*_" . PHP_EOL; } if($order->customer_phone) { $linkSimplifiedCheckout .= "_*" . __("Phone") . ": " . $order->customer_phone . "*_" . PHP_EOL; } $linkSimplifiedCheckout .= PHP_EOL . "*---------------------------------*".PHP_EOL.PHP_EOL; foreach($tempcart->items as $product) { $linkSimplifiedCheckout .= "*" . __("Product") . "*: " . $product['item']['name'].PHP_EOL; $linkSimplifiedCheckout .= "*" . __("Quantity") . "*: " . $product['qty'].PHP_EOL; $linkSimplifiedCheckout .= "*" . __("Price") . "*: " . $order->currency_sign . number_format($product['item']['price'] * $order->currency_value, $order_curr->decimal_digits, $order_curr->decimal_separator,$order_curr->thousands_separator).PHP_EOL; $linkSimplifiedCheckout .= (route('front.product', ['slug' => $product['item']['slug']])).PHP_EOL.PHP_EOL; $linkSimplifiedCheckout .= "*---------------------------------*".PHP_EOL.PHP_EOL; } if ($order->tax) { $linkSimplifiedCheckout .= "*" . __("Tax") . "*: " . $order->tax . "%" .PHP_EOL; } if ($order->coupon_code) { $linkSimplifiedCheckout .= "*" . __("Discount") . "*: " . $order->currency_sign . number_format($order->coupon_discount * $order->currency_value, $order_curr->decimal_digits, $order_curr->decimal_separator,$order_curr->thousands_separator).PHP_EOL; } $linkSimplifiedCheckout .= "*" . __("Order Amount") . "*: " . $order->currency_sign . number_format($order->pay_amount * $order->currency_value, $order_curr->decimal_digits, $order_curr->decimal_separator,$order_curr->thousands_separator).PHP_EOL.PHP_EOL; $linkSimplifiedCheckout .= "_" . __("Order Number") . " - " . $order->order_number . "_".PHP_EOL; $linkSimplifiedCheckout .= "_" . __("Date") . " - " . Carbon\Carbon::now()->toDateTimeString() . "_"; $link = "https://web.whatsapp.com/send?1=pt_BR&phone=" . $gs->simplified_checkout_number . "&text=" . urlencode($linkSimplifiedCheckout); @endphp{{ __("If the conversation page does not open automatically") . " " }}
{{ __("Click Here") }}{{ __("Get Back To Our Homepage") }}