Cannot switch language in Laravel 4

前端 未结 2 404
日久生厌
日久生厌 2021-02-05 19:48

I tried routing to switch language but there\'s no change. Could you help me, pls?

Route::get(\'lang/{lang}\', function($lang)
{
    App::setLocale($lang);
    r         


        
2条回答
  •  时光说笑
    2021-02-05 20:25

    I solved the problem by putting

    App::setLocale(Session::get('lang', 'en'));
    

    in app/start/global.php

提交回复
热议问题