tyondo/laravel-notifications

User notifications via email for Laravel 5.3 and 5.4.

v1.0.1 2018-01-29 13:21 UTC

This package is not auto-updated.

Last update: 2024-03-16 17:04:49 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,
];