Creating a module
To make modules use the artisan command php artisan make:moudle ModuleName to create a module called blog:
Flags
| Name | Description |
|---|---|
| full | Full structure |
| normal | Normal structure |
php artisan make:module blog --full
Or
php artisan make:module blog --normal
Or
php artisan make:module blog
This will create a module in the path modules/blog