Created by Elvis Moraes
about 5 years ago
|
||
basic: Usage on controller $this->addFlash( 'notice', 'Your changes were saved!' ); Usage on template (html) {% for message in app.flashes('notice') %} <div class="flash-notice"> {{ message }} </div> {% endfor %}
Another e.g. Usage on controller $this->addFlash( 'warning', 'Your changes NOT saved!' ); Usage on template (html) {% for label, messages in app.flashes %} {% for message in messages %} <div class="flash-{{ label }}"> {{ message }} </div> {% endfor %} {% endfor %}
Want to create your own Notes for free with GoConqr? Learn more.