Session not working in middleware Laravel 5

后端 未结 6 1277
广开言路
广开言路 2020-12-20 13:58

Im trying to work with Sessions in Laravel 5 Middleware, but they are not working. To be specific - var_dump(Session::all()); at the start of handle method give

6条回答
  •  -上瘾入骨i
    2020-12-20 14:15

    You need to use

    \Session::save();
    

    Whenever you want to save the modification so lets say I want to store the language of the user

    \Session::put('lang','en');
    \Session::save();
    

    When you refresh now you will find your newly created key.

提交回复
热议问题