How to make HMVC In Laravel 5?

nirajan poudel picture nirajan poudel · Jun 9, 2015 · Viewed 9.1k times · Source

I have finished my previous project in yii2. Now, I'm currently working on laravel 5. I am new to laravel 5. I have googled about HMVC in laravel but I haven't found an appropriated answer (ie package) on Laravel. In Yii2 it provided by default .But I have not found in Laravel .Please suggest me How I work moduler way in Laravel 5.

Answer

num8er picture num8er · Jun 10, 2015

You can achieve this by using namespaces and grouping routes. Look at my screenshot:

screenshot

As You can see I've 2 top level namespaces: Panel, Site. It's not problem to make controllers with namespace SomeApp, SomeAnotherApp and group their routes. using Route::group.

also read this discussion: https://laracasts.com/discuss/channels/requests/multiple-modules-in-laravel-5?page=1