Improve notifications feature in Laravel 5.5+
- php >=7.1.3
- Laravel 5.5+
Laravel 6.0+ requires php 7.2+
Begin by pulling in the package through Composer.
$ composer require oanhnn/laravel-notifications
After that, publish vendor's resources:
$ php artisan vendor:publish --tag=laravel-notifications-config
After that, copy the config file from the vendor directory:
$ cp vendor/oanhnn/laravel-notifications/config/notifications.php config/notifications.php
Update base handler class to your class in config/notifications.php
.
Register the config file and the service provider in bootstrap/app.php
:
$app->configure('notifications');
$app->register(Laravel\Notifications\ServiceProvider::class);
See all change logs in CHANGELOG
$ git clone git@github.com/oanhnn/laravel-notifications.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 © Oanh Nguyen.