14 <?php
if (
$block->displayBoth()):?>
15 <tr
class=
"totals sub excl">
16 <th style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"mark" colspan=
"<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope=
"row">
17 <?=
__(
'Subtotal (Excl. Tax)') ?>
19 <td style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"amount" data-th=
"<?= $block->escapeHtml(__('Subtotal (Excl. Tax)')) ?>">
20 <?= $this->helper(
'Magento\Checkout\Helper\Data')->formatPrice(
$block->getTotal()->getValueExclTax()) ?>
23 <tr
class=
"totals sub incl">
24 <th style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"mark" colspan=
"<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope=
"row">
25 <?=
__(
'Subtotal (Incl. Tax)') ?>
27 <td style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"amount" data-th=
"<?= $block->escapeHtml(__('Subtotal (Incl. Tax)')) ?>">
28 <?= $this->helper(
'Magento\Checkout\Helper\Data')->formatPrice(
$block->getTotal()->getValueInclTax()) ?>
32 <tr
class=
"totals sub">
33 <th style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"mark" colspan=
"<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope=
"row">
34 <?=
$block->getTotal()->getTitle() ?>
36 <td style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"amount" data-th=
"<?= $block->escapeHtml($block->getTotal()->getTitle()) ?>">
37 <?= $this->helper(
'Magento\Checkout\Helper\Data')->formatPrice(
$block->getTotal()->getValue()) ?>