13 <?php
if (
$block->includeTax() &&
$block->getTotalExclTax() >= 0):?>
14 <tr
class=
"grand totals excl">
15 <th style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"mark" colspan=
"<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope=
"row">
16 <strong><?=
__(
'Grand Total Excl. Tax') ?></strong>
18 <td style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"amount" data-th=
"<?= $block->escapeHtml(__('Grand Total Excl. Tax')) ?>">
19 <strong><?= $this->helper(
'Magento\Checkout\Helper\Data')->formatPrice(
$block->getTotalExclTax()) ?></strong>
22 <?=
$block->renderTotals(
'taxes',
$block->getColspan()) ?>
23 <tr
class=
"grand totals incl">
24 <th style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"mark" colspan=
"<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope=
"row">
25 <strong><?=
__(
'Grand Total Incl. Tax') ?></strong>
27 <td style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"amount" data-th=
"<?= $block->escapeHtml(__('Grand Total Incl. Tax')) ?>">
28 <strong><?= $this->helper(
'Magento\Checkout\Helper\Data')->formatPrice(
$block->getTotal()->getValue()) ?></strong>
32 <tr
class=
"grand totals">
33 <th style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"mark" colspan=
"<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope=
"row">
34 <strong><?=
$block->getTotal()->getTitle() ?></strong>
36 <td style=
"<?= /* @escapeNotVerified */ $block->getStyle() ?>" class=
"amount" data-th=
"<?= $block->escapeHtml($block->getTotal()->getTitle()) ?>">
37 <strong><?= $this->helper(
'Magento\Checkout\Helper\Data')->formatPrice(
$block->getTotal()->getValue()) ?></strong>