- flush cache after language upgrade

- Gateway fix
- extended language editor with textarea
This commit is contained in:
Peter Papp
2021-04-06 10:27:02 +02:00
parent 90c0466cd0
commit 131ae8109f
4 changed files with 37 additions and 15 deletions

View File

@@ -88,6 +88,9 @@ class LanguageService
// Store translations into database
DB::table('language_translations')
->insert($translations);
// Flush cache
cache()->forget("language-translations-$locale");
});
}
}