has('currentLocaleCode')) { $locale = session()->get('currentLocaleCode'); // now, set the selected locale (language) as system locale App::setLocale($locale); } /** * if session does not have any locale code, * then laravel will set the default locale code from config/app.php file * and, then redirect to the next request. */ return $next($request); } }