tyondo / laravel-notifications
User notifications via email for Laravel 5.3 and 5.4.
Installs: 49
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
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: 2024-10-26 21:19:17 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,
];