laravel通过artisan执行passport出现There are no commands defined in the "passport" namespace.

前端之家收集整理的这篇文章主要介绍了laravel通过artisan执行passport出现There are no commands defined in the "passport" namespace.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在laravel:passport使用中,执行passport出现错误,有如下两种情况:

1、执行命令:PHP artisan passport:install

PHP artisan migrate
Migration table created successfully.Migrated: 2014_10_12_000000_create_users_tableMigrated: 2014_10_12_100000_create_password_resets_tabled:\web\laravel-passport>PHP artisan passport:install
[Symfony\Component\Console\Exception\CommandNotFoundException]
There are no commands defined in the "passport" namespace.

解决,主要是没有在config/app.PHP配置文件添加

Laravel\Passport\PassportServiceProvider::class,

2、使用Artisan执行出现报错

Artisan::call('passport:install');dd("213");

发现问题是vendor/laravel/passport文件有问题,所以重新安装解决问题。

原文链接:https://www.f2er.com/laravel/477949.html

猜你在找的Laravel相关文章