Blog IT

To make modules use the artisan command php artisan module:make ModuleName to create a module called Post:

php artisan module:make Post

This will create a module in the path Modules/Post

You can create multiple modules in one command by specifying the names separately:

php artisan module:make Customer Contact User Post