在 Laravel 5.8 修改 Request 請求欄位

做法

使用 merge() 方法,若有重複,則會取代。

1
2
3
$request->merge([
'foo' => 'bar',
]);

使用 replace() 方法,取代所有欄位。

1
2
3
$request->replace([
'foo' => 'bar',
]);

直接設置欄位,若有重複,則會取代。

1
$request['foo'] = 'bar';