我正在使用Passport在laravel 5.8.28的项目中工作。我想使用一个帮助程序类,该类使用通行证生成并映射用户身份验证所需的所有路由。
像Auth::routes()
,但有护照。
谢谢!
答案 0 :(得分:0)
在您的AuthServiceProvider
引导方法中,可以添加以下内容:
Passport::routes();
// don't forget the import on the top:
use Laravel\Passport\Passport;
有关更多信息,请阅读the documentation。