` tag.
```html
```
This will find any alerts - excluding the important ones, which should remain until manually closed by the user - wait three seconds, and then fade them out.
## Multiple Flash Messages
Need to flash multiple flash messages to the session? No problem.
```php
flash('Message 1');
flash('Message 2')->important();
return redirect('somewhere');
```
Done! You'll now see two flash messages upon redirect.