| Current Path : /home/rtorresani/www/vendor/magento/module-wishlist/view/frontend/templates/item/column/ |
| Current File : //home/rtorresani/www/vendor/magento/module-wishlist/view/frontend/templates/item/column/name.phtml |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/** @var \Magento\Wishlist\Block\Customer\Wishlist\Item\Column\Info $block */
/** @var \Magento\Wishlist\Model\Item $item */
$item = $block->getItem();
$product = $item->getProduct();
?>
<strong class="product-item-name">
<a href="<?= $block->escapeUrl($block->getProductUrl($item)) ?>" title="<?= $block->escapeHtmlAttr($product->getName()) ?>" class="product-item-link">
<?= $block->escapeHtml($product->getName()) ?>
</a>
</strong>