Your IP : 216.73.217.100


Current Path : /home/rtorresani/www/vendor/magento/module-payment/view/frontend/templates/info/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-payment/view/frontend/templates/info/instructions.phtml

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

/**
 * @var \Magento\Payment\Block\Info $block
 * @see \Magento\Payment\Block\Info
 */
?>
<dl class="payment-method">
    <dt class="title"><?= $block->escapeHtml($block->getMethod()->getTitle()) ?></dt>
<?php if ($block->getInstructions()) : ?>
    <dd class="content"><?= /* @noEscape */ nl2br($block->escapeHtml($block->getInstructions())) ?></dd>
<?php endif; ?>
</dl>