Command | Description |
---|---|
Base Commands | |
module:dump | Dump-autoload the specified module or for all module. |
module:enable | Enable the specified module. |
module:disable | Disable the specified module. |
module:install | Install the specified module by given package name (vendor/name). |
module:update | Update dependencies for the specified module or for all modules. |
module:list | Show list of all modules. |
module:seed | Run database seeder from the specified module or from all modules. |
module:setup | Setting up modules folders for first use. |
module:use | Use the specified module. |
Make Commands | |
module:make | Generate new module. |
module:make-command | Generate new Artisan command for the specified module. |
module:make-controller | Generate new restful controller for the specified module. |
module:make-middleware | Generate new filter for the specified module. |
module:make-migration | Generate a new migration for the specified module. |
module:make-model | Generate new model for the specified module. |
module:make-provider | Generate a new service provider for the specified module. |
module:make-request | Generate new form request class for the specified module. |
module:make-seed | Generate new seeder for the specified module. |
Migration Commands | |
module:migrate | Migrate the migrations from the specified module or from all modules. |
module:migrate-refresh | Rollback & re-migrate the modules migrations. |
module:migrate-reset | Reset the modules migrations. |
module:migrate-rollback | Rollback the modules migrations. |
Publish Commands | |
module:publish | Publish assets from the specified module or from all modules. |
module:publish-config | Publish a modules configuration |
module:publish-migration | Publish a module's migrations to the application |
module:route-provider | Generate a new route service provider for the specified module. |