php - Laravel 5.2 Model 目录问题
迷茫
迷茫 2017-04-11 10:38:30
[PHP讨论组]

laravel5.2 之前是User.php在App下,之后自己创建Model\User.php,即将User.php模型放到Model目录下,导致自带的Login , Auth 验证的时候出现,App\User not found,不知道在哪里修改,求帮助,如下报错信息。:)

FatalThrowableError in EloquentUserProvider.php line 130:
Class '\App\User' not found
in EloquentUserProvider.php line 130
at EloquentUserProvider->createModel() in EloquentUserProvider.php line 96
at EloquentUserProvider->retrieveByCredentials(array('email' => 'Admin@ssd.com', 'password' => '081500943')) in SessionGuard.php line 353
at SessionGuard->attempt(array('email' => 'Admin@ssd.com', 'password' => '081500943'), false) in /export/usr/www/httpd2/htdocs/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Auth/AuthenticatesUsers.php line 74
at AuthController->login(object(Request))
at call_user_func_array(array(object(AuthController), 'login'), array(object(Request))) in Controller.php line 80
at Controller->callAction('login', array(object(Request))) in ControllerDispatcher.php line 146
at ControllerDispatcher->call(object(AuthController), object(Route), 'login') in ControllerDispatcher.php line 94
at ControllerDispatcher->Illuminate\Routing\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 52
at Pipeline->Illuminate\Routing\{closure}(object(Request)) in RedirectIfAuthenticated.php line 24
at RedirectIfAuthenticated->handle(object(Request), object(Closure))
at call_user_func_array(array(object(RedirectIfAuthenticated), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

全部回复(1)
高洛峰

check your config/auth.php file and update the following:

'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => App\User::class, //<------update your namespace here
    ]
],
and of course update your namespace in your User.php file
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号