Download the PHP package hepplerdotnet/flash-toastr without Composer
On this page you can find all versions of the php package hepplerdotnet/flash-toastr. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hepplerdotnet/flash-toastr
More information about hepplerdotnet/flash-toastr
Files in hepplerdotnet/flash-toastr
Package flash-toastr
Short Description Easy toastr.js flash notifications
License MIT
Informations about the package flash-toastr
Flash Toastr
Flash Laravel Session Messages to Toastr.js
Installation
First, pull in the package through Composer.
Run composer require HepplerDotNet/flash-toastr
Only needed for Laravel < 5.6
And then 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('Title','Message')
Flash::success('Title','Message')
Flash::error('Title','Message')
Flash::warning('Title','Message')
Flash::notify('Title', 'Message','Level')
This will set a few keys in the session:
- 'flash_notification.title' - The message title you're flashing
- 'flash_notification.message' - The message you're flashing
- 'flash_notification.level' - A string that represents the type of notification (good for applying CSS/Bootstrap class names)
Alternatively you may reference the flash()
helper function, instead of the facade. Here's an example:
You can even chain them to flash multiple messages at once.
With this messages flashed to the session, you may now display it in your view(s).
This will include the message.blade.php in to your view.
If you need to modify the flash message partials, you can run:
The message view will now be located in the resources/views/vendor/flash-toastr/
directory.
JavaScript Options for toastr.js
You can pass an array of options, which will be used to setup toastr.js
You can also publish the config file:
To publish both, config and views you can run:
See Toastr Documentation for all available options