mawuekom/laravel-notiflash is a Laravel package for flexible flash notifications for laravel.
It currently has 1 GitHub stars and 58 downloads on Packagist (latest version v1.5.0).
Install it with composer require mawuekom/laravel-notiflash.
Discover more Laravel packages by mawuekom
or browse all Laravel packages to compare alternatives.
Last updated
Flexible Flash notifications for Laravel
You can install the package via composer:
composer require mawuekom/laravel-notiflash
Once install, go to config/app.php to add NotiflashServiceProvider in providers array
Laravel 5.5 and up Uses package auto discovery feature, no need to edit the config/app.php file.
'providers' => [
...
Mawuekom\Notiflash\NotiflashServiceProvider::class,
],
php artisan vendor:publish --provider="Mawuekom\Notiflash\NotiflashServiceProvider"
Or
php artisan vendor:publish --provider="Mawuekom\Notiflash\NotiflashServiceProvider" --tag="assets"
Now that we have published a few new files to our application we need to reload them with the following command:
composer dump-autoload
@notiflashCss@notiflashJsnotiflash() helper function inside your controller to set a toast notification for info, success, warning or error@include('notiflash::messages')NB: You can skip steps 1 and 2 by just add this in your view @notiflashAssets
If you are on Laravel 7 or greater, you can use the tag syntax.
<x:notiflash-messages />
// Usage description here
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.