Session not working in middleware Laravel 5

后端 未结 6 1280
广开言路
广开言路 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条回答
  •  温柔的废话
    2020-12-20 14:37

    Another thing to note, if you're making some middleware that's manipulating/retrieving data from the session, you need to make sure it's loaded after StartSession web middleware.

提交回复
热议问题