unit.phtml 503 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. /** @var $block \Magento\Checkout\Block\Item\Price\Renderer */
  8. $_item = $block->getItem();
  9. ?>
  10. <span class="price-including-tax" data-label="<?= $block->escapeHtml(__('Excl. Tax')) ?>">
  11. <span class="cart-price">
  12. <?= /* @escapeNotVerified */ $this->helper('Magento\Checkout\Helper\Data')->formatPrice($_item->getCalculationPrice()) ?>
  13. </span>
  14. </span>