2

我正在尝试使用官方文档在 Laravel 应用程序上实现提醒/重置密码

在运行的步骤:

php artisan auth:reminders

我收到错误:

[InvalidArgumentException]
There are no commands defined in the "auth" namespace.

有谁知道如何正确配置它?

4

1 回答 1

3

您的 /config/app/config.php 可能缺少提醒服务提供商。将此添加到您的提供程序数组中。

'providers' => array(
    ...
    'Illuminate\Auth\Reminders\ReminderServiceProvider',
    ....
)
于 2014-10-07T13:55:17.057 回答