Search code examples
phplaravellaravel-5laravel-5.1classnotfound

FatalErrorException in HomeController.php line 69: Class 'app\User' not found


I'm new in laravel 5.1. can you help me solving this error?

enter image description here

This is my code

enter image description here


Solution

  • You should refer to the User model like this:

    $datas = \App\User::paginate(5);