templates/components/toaster.html.twig line 1

Open in your IDE?
  1. <div {{ attributes }} aria-live="polite" aria-atomic="true" class="position-relative" id="toaster">
  2.     <div class="toast-container position-fixed top-0 end-0 p-3">
  3.         {% for label, messages in app.flashes %}
  4.             {% for message in messages %}
  5.                 <div class="toast text-bg-{{ label }} border-0"
  6.                     {{ stimulus_controller('toast') }}
  7.                      role="alert" aria-live="assertive" aria-atomic="true">
  8.                     <div class="toast-body d-flex">
  9.                         <span class="me-2">{{ message }}</span>
  10.                         <button type="button"
  11.                                 class="btn-close ms-auto" data-bs-dismiss="toast" aria-label="Close"></button>
  12.                     </div>
  13.                 </div>
  14.             {% endfor %}
  15.         {% endfor %}
  16.     </div>
  17. </div>