tyondo/laravel-notifications

Laravel 5.3 和 5.4 的电子邮件用户通知。

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

This package is not auto-updated.

Last update: 2024-09-28 20:56:03 UTC


README

服务提供者添加了一个名为 tyondo_notifications 的路由中间件,您可以使用它来添加通知支持。

如果您想使通知适用于所有路由,请在 app/http/Kernel.php 中将其添加为全局中间件。

protected $middleware = [
    ....
    \Tyondo\Notifications\Middleware\TyondoNotificationsMiddleware::class,
];