Laravel is there a way to add values to a request array

前端 未结 13 2194
闹比i
闹比i 2020-12-07 15:24

I come across a situation in Laravel while calling a store() or update() method with Request parameter to add some additional value to the request before calling Eloquent fu

13条回答
  •  醉话见心
    2020-12-07 15:51

    You can also use below code

    $request->request->set(key, value).

    Fits better for me.

提交回复
热议问题