In my CakePHP 3 application I used different controllers for different parts - like so:
app/src/Controller/Admin/...
app/src/Controller/Backend/...
app/src/Controller/Frontend/...
app/src/Controller/Api/...
All templates follow the same hierarchic structure.
Now, since my application is getting more complex, I would also like to split up all model classes putting them in a similar folder structure.
So how could this be done? How can I tell the controller which table class to use by default?