vendor/mrpix/shopping-city/src/Resources/views/storefront/component/seller/profile-icon.html.twig line 1

Open in your IDE?
  1. {% block profile_icon %}
  2.     {% if seller.mediaLogo is not null %}
  3.         {% set iconUrl = seller.mediaLogo.url %}
  4.     {% else %}
  5.         {% set iconUrl = '/bundles/webkulmvmarketplace/storefront/seller-profile/default/default.svg' %}
  6.     {% endif %}
  7.     <div class="shop-icon">
  8.         <img src="{{ iconUrl }}" alt="{{ seller.storeTitle }}"/>
  9.     </div>
  10. {% endblock %}