12

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.

Xitrum
  • 7,765
  • 26
  • 90
  • 126
nirajan poudel
  • 692
  • 1
  • 8
  • 14

1 Answers1

9

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

num8er
  • 18,604
  • 3
  • 43
  • 57