for: The `else` Clause

If no iteration took place because the sequence was empty, you can render a replacement block by using else:

{% for user in users %}
    
{% else %}
  no user found
{% endfor %}

https://twig.symfony.com/doc/3.x/tags/for.html#the-else-clause
This site uses cookies.