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
I tried $request->merge($array) function in Laravel 5.2 and it is working perfectly.
$request->merge($array)
Example:
$request->merge(["key"=>"value"]);