I am making a modulized app with laravel 5.0 and for this , I created a serviceProvider that's called ModuleServiceProvider , and for including routes of each module , in Boot function of ModuleServiceProvider , I wrote include base_app()."/app/Modules/$ModuleName/routes.php";
. Now , my question is this: when I enter the module page address in browser it has returned errors such as NotFoundHttpException in Controller.php line 259: Controller method not found.
. I know that it is caused by / route in Http/routes.php
How can I fixed it ?
sorry for weak English.