Laravel 5.2 Model 目录问题

php中文网
发布: 2016-10-11 14:23:41
原创
1223人浏览过

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

<code>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
</code>
登录后复制

回复内容:

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

<code>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
</code>
登录后复制

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

AI建筑知识问答
AI建筑知识问答

用人工智能ChatGPT帮你解答所有建筑问题

AI建筑知识问答 22
查看详情 AI建筑知识问答
<code>'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => App\User::class, //<------update your namespace here
    ]
],
and of course update your namespace in your User.php file</code>
登录后复制
相关标签:
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

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