{% extends 'knp_menu.html.twig' %}
{% block linkElement %}
{{ parent() }}
{% if item.attribute('class') is not empty and item.attribute('class') == 'menu-item--new-inquiry' %}
{% if app.user %}
{# Render the notification count for logged-in users #}
{{ render(controller('App\\Controller\\PortalController::itemsNotification', { 'user': app.user })) }}
{% else %}
{# Default value for anonymous users #}
0
{% endif %}
{% endif %}
{% endblock %}