LoginSignup
1
2

More than 5 years have passed since last update.

Laravel 言語切り替えをミドルウェアでやる

Last updated at Posted at 2018-08-27

Laravelでの多言語化

App::getLocale()で得られる言語で切り替えてくれる
但し、HTTPのAccept-Languageでの切り替えは勝手にやってくれない
(App::getLocale()はconfig/app.phpのlocaleを取ってきているだけ)

middlewareで切り替え

public function handle($request, Closure $next)
{ 
    $lang = locale_accept_from_http($request->server->get('HTTP_ACCEPT_LANGUAGE'));
    \App::setLocale($lang); 
    return $next($request); 
}
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2