How to get All input of POST in Laravel

后端 未结 8 894
不知归路
不知归路 2021-02-03 17:10

I am using Laravel 5 and trying to get all input of POST variable in controller like this-

public function add_question()
{
    return Request::all();
}
<         


        
8条回答
  •  抹茶落季
    2021-02-03 17:36

    It should be at least this:

    public function login(Request $loginCredentials){
         $data = $loginCredentials->all();
         return $data['username'];
    }
    

提交回复
热议问题