diff --git a/src/Console/Commands/ImportTranslationsCommand.php b/src/Console/Commands/ImportTranslationsCommand.php index a587cd6..a0c4b37 100644 --- a/src/Console/Commands/ImportTranslationsCommand.php +++ b/src/Console/Commands/ImportTranslationsCommand.php @@ -145,7 +145,7 @@ protected function importLanguages(): void // if force is true or if the user confirms the question if ($this->option('force') || $this->confirm('The ltu_languages table does not exist or is empty, would you like to install the default languages?', true)) { - // $this->call('db:seed', ['--class' => LanguagesTableSeeder::class, '--force' => true]); + $this->call('db:seed', ['--class' => LanguagesTableSeeder::class, '--force' => true]); } else { $this->error('The ltu_languages table does not exist or is empty, please run the translations:install command first.');