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

前端 未结 13 2184
闹比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:42

    I tried $request->merge($array) function in Laravel 5.2 and it is working perfectly.

    Example:

    $request->merge(["key"=>"value"]);
    

提交回复
热议问题