I am having this error when moving User.php to Models/User.php
User.php
Models/User.php
local.ERROR: Symfony\\Component\\Debug\\Exception\\FatalThrow
I fixed the problem changing the use App\User; to use MyAppName\User;
use App\User;
use MyAppName\User;