public function fire() { if ($name = $this->argument('module')) { $module = $this->laravel['modules']->findOrFail($name); $this->publish($module); return; } foreach ($this->laravel['modules']->enabled() as $module) { $this->publish($module); } }