Skip to content

Instantly share code, notes, and snippets.

@YannickFricke
Forked from enricofoltran/base.html.twig
Created January 8, 2018 03:25
Show Gist options
  • Save YannickFricke/bc8ab9c95b2c17a4ca2a36d198e40240 to your computer and use it in GitHub Desktop.
Save YannickFricke/bc8ab9c95b2c17a4ca2a36d198e40240 to your computer and use it in GitHub Desktop.
Symfony: display all flash messages in a twig template
{% if app.session.flashbag.peekAll|length > 0 %}
{% for type, messages in app.session.flashbag.all %}
{% for message in messages %}
<div class="{{ type ? type : '' }}">
{{ message|trans({}, domain|default('messages')) }}
</div>
{% endfor %}
{% endfor %}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment