| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?> |
| 2 |
<div style="position: relative;"> |
| 3 |
<table style="width: 100%; border-collapse: collapse; margin-bottom: 0px; border: 0;"> |
| 4 |
<tbody> |
| 5 |
<tr> |
| 6 |
<td style="vertical-align: middle; width: 70%; border: 0; padding: 16px 10px 16px 0;"> |
| 7 |
<p style="margin: 0;font-weight: 700;font-size: 24px;">{{settings.store_brand}}</p> |
| 8 |
</td> |
| 9 |
<td style="vertical-align: middle; width: 15%; text-align: right; border: 0; padding: 16px;"> |
| 10 |
<p style="white-space: nowrap; color: #94a3b8; text-align: right; margin: 0;font-size:12px;"><?php echo esc_html__('Order Date', 'fluent-cart'); ?></p> |
| 11 |
<p style="white-space: nowrap; font-weight: bold; color: #000; text-align: right; margin: 0;font-size:15px;">{{order.created_at}}</p> |
| 12 |
</td> |
| 13 |
<td style="vertical-align: middle; width: 15%; text-align: right; border: 0; padding: 16px 0 16px 10px;"> |
| 14 |
<p style="white-space: nowrap; color: #94a3b8; text-align: right; margin: 0;font-size:12px;"><?php echo esc_html__('Receipt #', 'fluent-cart'); ?></p> |
| 15 |
<p style="white-space: nowrap; font-weight: bold; color: #000; text-align: right; margin: 0;font-size:15px;"> |
| 16 |
<a style="text-decoration: underline; color: #000;" href="{{order.customer_dashboard_link}}">{{order.invoice_no}}</a> |
| 17 |
</p> |
| 18 |
</td> |
| 19 |
</tr> |
| 20 |
</tbody> |
| 21 |
</table> |
| 22 |
</div> |
| 23 |
|