在 Laravel 5.8 修改 Request 請求欄位 Memo's Blog 2019-04-08 Laravel Laravel, PHP, Programming 做法使用 merge() 方法,若有重複,則會取代。 123$request->merge([ 'foo' => 'bar',]); 使用 replace() 方法,取代所有欄位。 123$request->replace([ 'foo' => 'bar',]); 直接設置欄位,若有重複,則會取代。 1$request['foo'] = 'bar';