Laravel 5.2 Session flash not working even with web middleware

后端 未结 6 1477
孤城傲影
孤城傲影 2020-12-29 15:25

I am trying to implement flash messaging using sessions but am unable to do so.

In my controller I have:

public function store(Request $request) {
          


        
6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-29 16:00

    I dont know why but on Windows you need changes in your routes: middleware to middlewareGroups, like that:

    change middleware to middlewareGroups

    So, in your app\Kernel.php, you need put the StartSession at first on array of middleware group web:

    put the StartSession at first on array of middleware group web

提交回复
热议问题