Laravel 5 - FatalErrorException: Class 'User' not found
try to use
$user = new \App\User;
instead
$user = new User;
I had the same issue, the answer above didn't help, but I used
use App\Models\Access\User\User;
instead of use User;
in my controller and it worked.