How to structure a modular app in Laravel 5?
问题 I would like to divide my application in modules. For instance, there would be a "core" modules that contains the basic login functionality, app layout/formatting (CSS etc), user management and a diary. Later on I may create other modules like a contact manager that can easily be added or removed from the application. There would be some logic in the apps navigation for determining which modules are present and to show/hide the links to them. How can I do this in terms of directory structure,