tyondo/laravel-notifications

User notifications via email for Laravel 5.3 and 5.4.
50
Install
composer require tyondo/laravel-notifications
Latest Version:v1.0.1
PHP:>=5.5.9
License:MIT
Last Updated:Jan 29, 2018
Links: GitHub  ·  Packagist
Maintainer: Rndwiga

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