Download the PHP package padosoft/laravel-notifier without Composer
On this page you can find all versions of the php package padosoft/laravel-notifier. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download padosoft/laravel-notifier
More information about padosoft/laravel-notifier
Files in padosoft/laravel-notifier
Package laravel-notifier
Short Description Laravel Laravel Package for beautifull JS notification.
License MIT
Homepage https://github.com/padosoft/laravel-notifier
Informations about the package laravel-notifier
Laravel Package for beautifull JS notification.
This package provides a wrapper of commands to Padosoft JS notifier, to display beautifull notifications with js plugin.
Table of Contents
- Laravel Package to notify with beautifull JS notifier.
- SCREENSHOOTS
- Requires
- Installation
- USAGE
- EXAMPLE:
- Change log
- Testing
- Contributing
- Security
- Credits
- About Padosoft
- License
Requires
- "php" : ">=7.0.0",
- "illuminate/support": "^5.0|^6.0|^7.0",
- "illuminate/session": "^5.0|^6.0|^7.0"
Installation
You can install the package via composer:
FOR LARAVEL 5.6+
No additional steps required because the service provider use new L5.5+ autodiscovery feature.
FOR LARAVEL <=5.5
You must install this service provider.
USAGE
Call one of these methods in your controllers to insert a notification:
Notify::warning($message, $onlyNextRequest = false, $options = [])
- add a warning notificationNotify::error($message, $onlyNextRequest = false, $options = [])
- add an error notificationNotify::info($message, $onlyNextRequest = false, $options = [])
- add an info notificationNotify::success($message, $onlyNextRequest = false, $options = [])
- add a success notificationNotify::add($theme, $timeout, $type: warning|error|info|success, $layout, $text, $sounds = null, $soundsVolume = null)
- add a notificationNotify::clear()
- clear all current notification
If you need to show the notification only if a particular condition is true, you can use these methods:
Notify::ifWarning($condition, $message, $onlyNextRequest = false, $options = [])
- add a warning notification if $condition is trueNotify::ifError($condition, $message, $onlyNextRequest = false, $options = [])
- add an error notification if $condition is trueNotify::ifInfo($condition, $message, $onlyNextRequest = false, $options = [])
- add an info notification if $condition is trueNotify::ifSuccess($condition, $message, $onlyNextRequest = false, $options = [])
- add a success notification if $condition is true
Example: instead of use this:
you can use this:
EXAMPLE:
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email instead of using the issue tracker.
Credits
- Lorenzo Padovani
- All Contributors
About Padosoft
Padosoft (https://www.padosoft.com) is a software house based in Florence, Italy. Specialized in E-commerce and web sites.
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-notifier with dependencies
illuminate/support Version ^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
illuminate/session Version ^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0