name = $name; $this->type = $type; $this->project = $project; } public function handle() { $module = app('module.collection')->get($this->project . '.' . $this->type . '.' . $this->name); if ($module) { return $module->isInstalled(); } else { return false; } } }