JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrlaravel['modules']->findOrFail($this->getModuleName()); return (new Stub('/factory.stub', [ 'NAMESPACE' => $this->getClassNamespace($module), 'NAME' => $this->getModelName(), 'MODEL_NAMESPACE' => $this->getModelNamespace(), ]))->render(); } /** * @return mixed */ protected function getDestinationFilePath() { $path = $this->laravel['modules']->getModulePath($this->getModuleName()); $factoryPath = GenerateConfigReader::read('factory'); return $path.$factoryPath->getPath().'/'.$this->getFileName(); } /** * @return string */ private function getFileName() { return Str::studly($this->argument('name')).'Factory.php'; } /** * @return mixed|string */ private function getModelName() { return Str::studly($this->argument('name')); } /** * Get default namespace. */ public function getDefaultNamespace(): string { return config('modules.paths.generator.factory.namespace') ?? ltrim(config('modules.paths.generator.factory.path', 'Database/Factories'), config('modules.paths.app_folder', '')); } /** * Get model namespace. */ public function getModelNamespace(): string { $path = ltrim(config('modules.paths.generator.model.path', 'Entities'), config('modules.paths.app_folder', '')); $path = str_replace('/', '\\', $path); return $this->laravel['modules']->config('namespace').'\\'.$this->laravel['modules']->findOrFail($this->getModuleName()).'\\'.$path; } }