diff --git a/src/Core/Commands/Packages/MakeTranslatable.php b/src/Core/Commands/Packages/MakeTranslatable.php index 7e28999..0169bc5 100644 --- a/src/Core/Commands/Packages/MakeTranslatable.php +++ b/src/Core/Commands/Packages/MakeTranslatable.php @@ -67,7 +67,6 @@ private function generateTranslatableModel() $content = str_replace('{{ class }}', $this->name, file_get_contents(__DIR__ . '/../stubs/mode.translatabled.stub')); $content = str_replace('{{ namespace }}', $this->getNamespace('Models'), $content); - $content = str_replace('use HasFactory;', 'use HasFactory, Translatable;', $content); $content = str_replace('{{ table }}', $this->table, $content); $content = str_replace('{{ id }}', $this->id, $content);