Laravel 5.2 Session flash not working even with web middleware

后端 未结 6 1452
孤城傲影
孤城傲影 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条回答
  •  生来不讨喜
    2020-12-29 16:08

    In Controller:

    use Session,Redirect;
    
    public function store(Request $request) 
    {
    Session::flash('donald', 'duck');
    Session::put('mickey', 'mouse');
    return Redirect::to('/customers')->with('bugs', 'bunny');
    }
    

    In 'view' check the data is getting or not:

    
    

    Good Luck :)

提交回复
热议问题