Laravel 8 定义授权路由
2021-07-06 15:15 更新
庆幸的是,Laravel 可以轻松定义响应频道授权请求的路由。在 Laravel 应用程序附带的 BroadcastServiceProvider
中,你将看到对 Broadcast::routes
方法的调用。 此方法将注册 /broadcasting/auth
路由去处理授权请求:
Broadcast::routes();
Broadcast::routes
方法将自动将其路由放在 web
中间件组中; 但是,如果要自定义指定的属性,可以将路径属性数组传递给方法:
Broadcast::routes($attributes);
以上内容是否对您有帮助:
更多建议: