tyondo / laravel-notifications
User notifications via email for Laravel 5.3 and 5.4.
Package info
github.com/Rndwiga/laravel-notifications
Type:package
pkg:composer/tyondo/laravel-notifications
v1.0.1
2018-01-29 13:21 UTC
Requires
- php: >=5.5.9
- laravel/framework: 5.3.*|5.4.*|5.5.*|5.6.*
Requires (Dev)
- phpunit/phpunit: ~4.5
This package is not auto-updated.
Last update: 2026-03-15 04:28:33 UTC
README
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,
];