templates/Partial/Breadcrumb/breadcrumb.html.twig line 1

Open in your IDE?
  1. <div class="breadcrumb-nellapp mt-2 mb-2">
  2.     <p>
  3.         <i class="fas fa-home"></i>
  4.         {% for item in arrayBreadcrumb %}
  5.             {% if loop.last %}
  6.                 {{ item.label }}
  7.             {% else %}
  8.                 <a href="{{ item.path }}">{{ item.label }}</a> /
  9.             {% endif %}
  10.         {% endfor %}
  11.     </p>
  12. </div>