1
我有一個數組內的數組,並想添加一些東西。Laravel保存多個記錄
$options = $request->options;
foreach ($options as $option) {
$option['poll_id'] = $this->id;
}
dd($options);
但由於某些原因,它不會添加到數組中。
所以我收到這樣的:
array:1 [
0 => array:1 [
"name" => "testtest"
]
]
但我希望這樣的:
array:1 [
0 => array:1 [
"name" => "testtest",
"poll_id" => 1
]
]