File "order_approved_confirmed.blade.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/resources/views/admin/mails/order_approved_confirmed.blade.php
File size: 2.43 KB
MIME-type: text/html
Charset: utf-8
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<title>Order Approved/Confirmed</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<p style="text-align: center; ">
<img src="{{asset('images/jm-logo.png')}}" alt="{{config('app.name')}}" width="200">
</p>
<p style="text-align: center; font-size: 25px">
<strong>ORDER ACKNOWLEDGMENT - Please see your order details attached</strong>
</p>
<h3>Dear {{$data['customer_name']}},</h3>
<p>
Woo-hoo! Thank you for your order <strong>{{$data['order_number']}}</strong>.
</p>
<p>
Please take a minute to review your orders details. Most importantly, you will want to make sure
everything is accurate and complete.
</p>
@if(isset($data['invoice_url']))
<p style="text-align: center">
<a href="{{$data['invoice_url']}}" style="display: inline-block;margin-top: 10px;padding: 10px 35px;text-decoration: underline;color: blue;font-weight: bold;font-size: 25px;">CLICK HERE TO PAY</a>
</p>
@endif
<p>
If you have any questions or require any further assistance, please do not hesitate to
reach out to our friendly customer support team. We are here to assist you at every step of the way.
</p>
<p>
Warm regards, <br />
{{config('app.name')}} <br />
<a href="tel:{{$data['company_phone_1']}}">{{$data['company_phone_1']}}</a> <br>
<a href="tel:{{$data['company_phone_2']}}">{{$data['company_phone_2']}}</a>
</p>
<p style="text-align: center; background-color: #117283; color: white;">Copyrights © 2007-{{now()->format('Y')}} J & M Trophies, All Rights Reserved | Powered by ClickySoft</p>
</div>
</div>
</div>
</body>
</html>