<div class="breadcrumb-nellapp mt-2 mb-2">
<p>
<i class="fas fa-home"></i>
{% for item in arrayBreadcrumb %}
{% if loop.last %}
{{ item.label }}
{% else %}
<a href="{{ item.path }}">{{ item.label }}</a> /
{% endif %}
{% endfor %}
</p>
</div>