Package Data | |
---|---|
Maintainer Username: | CrazyInventor |
Maintainer Contact: | d4vid81@gmail.com (David Schneider) |
Package Create Date: | 2016-11-02 |
Package Last Update: | 2017-04-12 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-22 03:06:24 |
Package Statistics | |
---|---|
Total Downloads: | 97 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Flash message package for Laravel with customizable message groups (levels).
Run 'composer require crazyinventor/laflash' or modify your composer.json:
{
"require": {
"crazyinventor/laflash": "*"
}
}
In /config/app.php
, add the following to providers
:
'CrazyInventor\LaFlash\FlashServiceProvider',
and the following to aliases
:
'Flash' => 'CrazyInventor\LaFlash\FlashFacade',
In /config/app.php
, add the following to providers
:
CrazyInventor\LaFlash\FlashServiceProvider::class,
and the following to aliases
:
'Flash' => CrazyInventor\LaFlash\FlashFacade::class,
Publish the flash
configuration file by running the following command from a shell inside your Laravel's installation directory:
php artisan vendor:publish
This will create the file config/flash.php
in your Laravel's installation directory. You can customize the levels you would like to use.
Check if there are available messages. If you define a level, only messages for that level will be considered.
Get all available messages. If you define a level, only messages for that level will be returned.
Get all available levels you can log to.
Store a message for the given leven.