This stubs repository can be used with laravel modules from nWidart. https://github.com/nWidart/laravel-modules
After installing this package you can you should configure your config/modules.php configuration to use this stubs. There will be an update soon that will change this automatically for you.
However there are currently some handycaps due the missing Ressource management.
If you are going for Vue you must use the basePath from
php artisan vendor:publish
// select Gkiokan\LMS\LMSServiceProvider
// Modules pre configuration will be copied to config/modules.php
php artisan modules:make ModuleName
cd Modules/$LOWER_NAME$
cd Ressource
vue create js
// merge options
cd js && npm i && npm run build
// VueRouter Configuration path
const router = new VueRouter({
mode: 'history',
base: '/core2/', // this is the basePath variable of $LOWER_NAME$
routes
})