解决方法:http://stackoverflow.com/questions/28516454/laravel-5-user-model-not-found
总结:是因为我把app下的User移动到app\Models下了,所以You need to update your config/auth.php file. Change 'model' => 'App\User'
to 'model' => 'App\Models\User'
.
时间: 2024-10-25 18:05:16