Say you want to move the models to app/Models
For each model change :
namespace App;
to
namespace App\Models;
Check these files and search especially app\User
app/Http/Controllers/Auth/RegisterController.php
config/auth.php
config/services.php
database/factories/ModelFactory.php
database/factories/UserFactory.php
Your Controllers
And change App/ModelExample
to App/Models/ModelExample
Run composer dump-autoload
Done congratulations!