Download the PHP package jeremy379/flash without Composer
On this page you can find all versions of the php package jeremy379/flash. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jeremy379/flash
More information about jeremy379/flash
Files in jeremy379/flash
Package flash
Short Description Easy flash notifications with multiple messages
License MIT
Informations about the package flash
- Forked at first from Laracasts/Flash to use multiple message and then forked from mdupaul/flash
Easy Flash Messages
Installation
First, pull in the package through Composer.
Run composer require jeremy379/flash
And then, if using Laravel 5, include the service provider within config/app.php
.
And, for convenience, add a facade alias to this same file at the bottom:
Usage
Within your controllers, before you perform a redirect...
You may also do:
Flash::info('Message')
Flash::success('Message')
Flash::error('Message')
Flash::warning('Message')
Flash::overlay('Modal Message', 'Modal Title')
Again, if using Laravel, this will set a few keys in the session:
- 'flash_notification.message' - The message you're flashing
- 'flash_notification.level' - A string that represents the type of notification (good for applying HTML class names)
Alternatively, again, if you're using Laravel, you may reference the flash()
helper function, instead of the facade. Here's an example:
Or, for a general information flash, just do: flash('Some message');
.
With this message flashed to the session, you may now display it in your view(s). Maybe something like:
Note that this package is optimized for use with Twitter Bootstrap.
Because flash messages and overlays are so common, if you want, you may use (or modify) the views that are included with this package. Simply append to your layout view: