How to send data using redirect with Laravel

前端 未结 3 1515
借酒劲吻你
借酒劲吻你 2020-12-05 23:41

I developed an API to show a pop up message when the page loaded.

Not all the pages use the pop up API. For example, if the user go to the show($id) pag

3条回答
  •  既然无缘
    2020-12-06 00:15

    In store()

    return Redirect::route('clients.show, $id')->with( ['data' => $data] );
    

    and in show() read it with

    Session::get('data');
    

提交回复
热议问题