Package Data | |
---|---|
Maintainer Username: | oanhnn |
Maintainer Contact: | oanhnn.bk@gmail.com (Oanh Nguyen) |
Package Create Date: | 2017-05-26 |
Package Last Update: | 2018-01-04 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:21:30 |
Package Statistics | |
---|---|
Total Downloads: | 6,653 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Easy Flash Messages for Your Laravel 5.4+ Application
This composer package offers a Twitter Bootstrap optimized flash messaging setup for your Laravel 5.4+ Applications.
Begin by pulling in the package through Composer.
$ composer require oanhnn/laravel-flash-message
Next, if using Laravel 5.5+, you done. If using Laravel 5.4, include the service provider within your config/app.php
file.
// config/app.php
'providers' => [
// Other service providers...
Laravel\FlashMessage\FlashMessageServiceProvider::class,
],
'aliases' => [
// Other alias classes
'Flash' => Laravel\FlashMessage\Facades\Flash::class,
],
Finally, as noted above, the default CSS classes for your flash message are optimized for Twitter Bootstrap. As such, pull in the Bootstrap's CSS within your HTML or layout file.
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
Within your controllers, before you perform a redirect, use Flash
facade.
public function save()
{
Flash::success('Save success!')->important();
return redirect('/home');
}
You may also do:
| method | description |
|---------------------------------------------|--------------------------------------------------------|
| Flash::success('message')
| Set the flash message with theme "success alert". |
| Flash::warning('message')
| Set the flash message with theme "warning alert". |
| Flash::error('message')
| Set the flash message with theme "error alert". |
| Flash::info('message')
| Set the flash message with theme "info alert". |
| Flash::info('message')->important()
| Add a close button to the flash message. |
| Flash::info('message')->overlay('title')
| Display flash message as a modal overlay with a title. |
And include flash message view into your blade template.
@include('flash::message')
See all change logs in CHANGELOG
$ git clone git@github.com/oanhnn/laravel-flash-message.git /path
$ cd /path
$ composer install
$ composer phpunit
Please see CONTRIBUTING for details.
If you discover any security related issues, please email to Oanh Nguyen instead of using the issue tracker.
This project is released under the MIT License.
Copyright © 2017-2018 Oanh Nguyen.