Applications Coding Manual
- Torsten Schmidt
- Christian Schramm
Owned by Torsten Schmidt
How to enable/disable a Module
Output of module:enable --help or module:disable --help Expand source
Usage: module:enable <module> module:disable <module> Arguments: module Module name. Options: -h, --help Display this help message -q, --quiet Do not output any message -V, --version Display this application version --ansi Force ANSI output --no-ansi Disable ANSI output -n, --no-interaction Do not ask any interactive question --env[=ENV] The environment the command should run under -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug Help: Enable/Disable the specified module.
Example Enable/Disable a module Expand source
cd /var/www/nmsprime/ php artisan module:list # show all modules with their Status php artisan module:enable BillingBase # example: enable Billing Base Module php artisan module:disable BillingBase # example: disable Billing Base Module
See also Installation with RPM for how to install or uninstall a module.