我正在尝试使用official docs
在Laravel应用程序上实现提醒/重置密码在跑步的步骤:
php artisan auth:reminders
我收到了错误:
[InvalidArgumentException]
There are no commands defined in the "auth" namespace.
有谁知道如何正确配置它?
答案 0 :(得分:3)
您的/config/app/config.php可能缺少Reminders服务提供商。将其添加到您的提供者数组中。
'providers' => array(
...
'Illuminate\Auth\Reminders\ReminderServiceProvider',
....
)