Ken 2 weeks ago
parent
commit
c318b02f73
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/api/BaseController.php

+ 1 - 1
app/Http/Controllers/api/BaseController.php

@@ -17,7 +17,7 @@ class BaseController extends Controller
 
     public function __construct()
     {
-        $lang = request()->input('lang', 'zh-CN');
+        $lang = request()->input('lang', 'vi');
         App::setLocale($lang);
         $this->lang = $lang;
     }