How to make HMVC In Laravel 5?

9.9k views Asked by At

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.

1

There are 1 answers

3
num8er On

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