You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each type will flash specific data to the session to add the appropriate class to the view.
61
+
These classes are defined in the configuration file.
62
+
60
63
### Multiple Flashes
61
64
62
65
You can flash any number of messages of any type.
63
-
In your view, you can use `@foreach` to run through them (see below).
66
+
In your view, you can use `@foreach` to run through them (see the [view](https://github.com/codezero-be/flash/blob/master/src/views/message.blade.php)).
64
67
65
68
Flash::success('success message');
66
69
Flash::warning('warning message');
@@ -77,7 +80,7 @@ Obviously an overlay message is always dismissible and does not have this option
77
80
78
81
Flash::success('success message', [], false);
79
82
80
-
> Dismissing alerts requires some javascript from [Bootstrap](http://getbootstrap.com/getting-started/), or your own.
83
+
> Dismissing alerts require some javascript from [Bootstrap](http://getbootstrap.com/getting-started/), or your own.
0 commit comments