Download the PHP package coderjp/notify without Composer
On this page you can find all versions of the php package coderjp/notify. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package notify
Laravel Notify (Laravel 5 Package)
Notifications for Laravel 5. This is a simple package that extends Illuminate MessageBag. It provides a simple interface for displaying notifications.
Please note, to show notifications on redirect this uses session flashing, therefore the messages are only stored for 1 page redirect, not indefinitely.
Installation
Require this package with composer using the following command:
composer require coderjp/notify
Add the service provider to the providers
array in config/app.php
'Coderjp\Notify\NotifyServiceProvider',
Add the facade to the aliases
array in config/app.php
'Notify' => 'Coderjp\Notify\Facades\Notify',
Generate the config file for changing various settings. This can be found in config/notify.php
.
php artisan vendor:publish --provider=Coderjp\\Notify\\NotifyServiceProvider
Configuration
To add your own message types, add them to the types
array in config/notify.php
.
By default the options are success, error, info
.
Usage
Storing Notifications
Notifications can be either be displayed on redirect or on the current page.
To store a notification so it is displayed on the next redirect, call the type like so
To store a notification so it is displayed on the current page, call the type like so
Outputing Notifications
To output a certain type of notification
To output all/any
Contributions
If you feel that this project should do more, please open a pull request or open an issue for future improvements / functionality.
All versions of notify with dependencies
illuminate/support Version ~5.0
illuminate/session Version ~5.0
illuminate/config Version ~5.0