option('pivot')) { return parent::getStub(); } return __DIR__ . '/stubs/model.stub'; } public function handle() { if (parent::handle() === false && ! $this->option('force')) { return false; } if ($this->option('all')) { $this->input->setOption('service', true); } if ($this->option('service')) { $this->createService(); } } public function createService() { $modelName = Str::studly(class_basename($this->argument('name'))); $this->call('make:service', [ 'name' => "{$modelName}Service", ]); } protected function getOptions(): array { $options= parent::getOptions(); $options[]=['service', 'sv', InputOption::VALUE_NONE, 'Create a new service file']; return $options; } }