Package Data | |
---|---|
Maintainer Username: | Rndwiga |
Maintainer Contact: | packages@tyondo.com (Raphael Ndwiga) |
Package Create Date: | 2017-02-28 |
Package Last Update: | 2018-01-29 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:11:31 |
Package Statistics | |
---|---|
Total Downloads: | 49 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
The ServiceProvider adds a route middleware you can use, called tyondo_notifications. You can apply this to a route or group to add Notifications support.
If you want Notifications to apply for all your routes, add it as global middleware in app/http/Kernel.php:
protected $middleware = [
....
\Tyondo\Notifications\Middleware\TyondoNotificationsMiddleware::class,
];