You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
just tried pingpong modules with current laravel 5.1 installation. Creating a module with artisan module:make "modulename" generates a module folder structure underneath the module folder itself. Calling http://localhost/modulename throws following error:
InvalidArgumentException in FileViewFinder.php line 112: No hint path defined for [modulename]
I tried artisan module:make Bigmodule and artisan module:make smallmodule because in the installation examples are both notations with capital and small letters. It doesn't matter which I use, error keeps the same.
Changing
return view('Modulename::index');
to
return view('modulename::index');
in the generated index controller stub did the trick and calling http://localhost/modulename afterwards delivers the correct view without errors.
The text was updated successfully, but these errors were encountered:
Hi,
just tried pingpong modules with current laravel 5.1 installation. Creating a module with artisan module:make "modulename" generates a module folder structure underneath the module folder itself. Calling
http://localhost/modulename
throws following error:InvalidArgumentException in FileViewFinder.php line 112: No hint path defined for [modulename]
I tried
artisan module:make Bigmodule
andartisan module:make smallmodule
because in the installation examples are both notations with capital and small letters. It doesn't matter which I use, error keeps the same.Changing
return view('Modulename::index');
to
return view('modulename::index');
in the generated index controller stub did the trick and calling
http://localhost/modulename
afterwards delivers the correct view without errors.The text was updated successfully, but these errors were encountered: