Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-tax/view/base/templates/pricing/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-tax/view/base/templates/pricing/adjustment.phtml

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
?>

<?php /** @var \Magento\Tax\Pricing\Render\Adjustment $block */ ?>
<?php /** @var $escaper \Magento\Framework\Escaper */ ?>

<?php if ($block->displayBothPrices()): ?>
    <span id="<?= $escaper->escapeHtmlAttr($block->buildIdWithPrefix('price-excluding-tax-')) ?>"
          data-label="<?= $escaper->escapeHtmlAttr(__('Excl. Tax')) ?>"
          data-price-amount="<?= /* @noEscape */ $block->getRawAmount() ?>"
          data-price-type="<?= $escaper->escapeHtmlAttr($block->getDataPriceType()); ?>"
          class="price-wrapper price-excluding-tax">
        <span class="price"><?= /* @noEscape */ $block->getDisplayAmountExclTax() ?></span></span>
<?php endif; ?>