| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?> |
| 2 |
<?php |
| 3 |
use FluentCart\App\Helpers\Helper; |
| 4 |
?> |
| 5 |
|
| 6 |
<tr> |
| 7 |
<td> |
| 8 |
<div style="overflow: hidden;"> |
| 9 |
<div style="float: left; border: 1px solid #D6DAE1; width: 32px; height: 32px; border-radius: 4px; margin-right: 12px; margin-top: 3px"> |
| 10 |
<img src="<?php echo esc_url($product->thumbnail ?? ''); ?>" style="width: 100%; height: 100%; border-radius: 3px;" alt="<?php echo esc_attr($item->post_title); ?>"/> |
| 11 |
</div> |
| 12 |
<div style="overflow: hidden;"> |
| 13 |
<div style="font-size: 13px; color: #2F3448; font-weight: 500; overflow: hidden; line-height: 18px; margin-top: 0; margin-bottom: 5px"> |
| 14 |
<?php echo esc_html($item->post_title); ?> |
| 15 |
</div> |
| 16 |
<div style="margin: 0; font-size: 12px; color: #758195; font-weight: 400; line-height: 15px;"> |
| 17 |
-- <?php echo esc_html($item->variation_display_title ?: $item->title); ?> |
| 18 |
</div> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
</td> |
| 22 |
<td style="text-align: center; padding-left: 8px; padding-right: 8px;"><?php echo (int) $item->quantity; ?></td> |
| 23 |
<td style="text-align: center; padding-left: 8px; padding-right: 8px;"><?php echo esc_html(Helper::toDecimal($item->unit_price)); ?></td> |
| 24 |
<td style="text-align: center; padding-left: 8px; padding-right: 8px;"><?php echo esc_html(Helper::toDecimal($item->subtotal)); ?></td> |
| 25 |
</tr> |
| 26 |
|