未找到 Laravel 5 用户模型

2022-08-30 13:13:17

我已将用户模型从默认应用程序目录移动到应用程序/模型中。

我已将 User 中的命名空间更新为,但我收到此错误:namespace App\Models;

FatalErrorException in EloquentUserProvider.php line 122:
Class '\App\User' not found

我的 json 文件中有正确的条目:

"autoload": {
    "classmap": [
        "database",
        "app/Modules",
        "app/Models"
    ],
    "psr-4": {
        "App\\": "app/",
        "Modules\\": "app/Modules/"
    }
},

我错过了什么?


答案 1

您需要更新您的配置/身份验证.php文件。更改为 。'model' => 'App\User''model' => 'App\Models\User'


答案 2

不要忘记在以前的所有更改后清除缓存

php artisan config:clear

推荐