Laravel 5 has ORM models by default in app folder. I want to move these into app/models. When I do that then these classes are not found anymore.
How to make Laravel fin
Afer moving all files in the models folder. What you need to do is run:
composer dump-autoload
This worked for me. :)