Rndwiga / laravel-notifications by Rndwiga

User notifications via email for Laravel 5.3 and 5.4.
49
0
2
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-04-17 15:12:12
Package Statistics
Total Downloads: 49
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

laravel-registration-confirmation

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,
];