vendor/umbrella2/corebundle/templates/_toast.html.twig line 1

Open in your IDE?
  1. {% if app.session.flashbag is defined %}
  2.     <div hidden="hidden">
  3.         {% for toast in app.session.flashbag.get('toast') %}
  4.             <div data-toggle="toast" data-text="{{ toast.text }}" data-title="{{ toast.title }}" data-type="{{ toast.type }}"></div>
  5.         {% endfor %}
  6.     </div>
  7. {% endif %}