diff --git a/src/Controllers/TranslationsController.php b/src/Controllers/TranslationsController.php index 999db6f..b9a1037 100644 --- a/src/Controllers/TranslationsController.php +++ b/src/Controllers/TranslationsController.php @@ -36,7 +36,6 @@ public function getLocales() { } public function postItems(Request $request) { - if(strlen($request->get('translate')) == 0) throw new TranslationException(); $base = \DB::table('translations') ->select('name', 'value') @@ -104,4 +103,4 @@ public function postDelete(Request $request) ->where('name', strtolower($request->get('name')))->delete(); return 'OK'; } -} \ No newline at end of file +}