How to get All input of POST in Laravel

后端 未结 8 932
不知归路
不知归路 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:48

    Try this :

    use Illuminate\Support\Facades\Request;
    public function add_question(Request $request)
    {
        return $request->all();
    }
    

提交回复
热议问题