Looking to hire Laravel developers? Try LaraJobs
This package is not available.

laravel-notifications maintained by tyondo

Description
User notifications via email for Laravel 5.3 and 5.4.
Last update
2018/01/29 14:21 (dev-master)
License
Downloads
50

Comments
comments powered by Disqus

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