Reputation: 83680
I have got a project with about 50 controllers and 60 models.
It is quite difficult to work in that mess.
How can I improve that scructure?
Now I am creating namespaces for some logical parts of my application and store them in separate folders. But for models this have got some side effects.
Upvotes: 1
Views: 529
Reputation: 52658
You can organize your classes in subfolders - you don't even need to structure them into submodules (but you can if you want to).
See this other question for details.
Upvotes: 2