replace path modules to apps

This commit is contained in:
cuneytsenturk
2017-11-01 22:15:25 +03:00
parent cfbd5eba59
commit d7f53b52c1
22 changed files with 82 additions and 89 deletions

View File

@ -14,7 +14,7 @@ class ModuleInstall extends Command
*
* @var string
*/
protected $signature = 'module:install {module} {company_id}';
protected $signature = 'module:install {alias} {company_id}';
/**
* The console command description.
@ -32,7 +32,7 @@ class ModuleInstall extends Command
{
$request = [
'company_id' => $this->argument('company_id'),
'alias' => strtolower($this->argument('module')),
'alias' => strtolower($this->argument('alias')),
'status' => '1',
];