U hebt toegang tot uw json-sleutels met behulp van de pijl, zodat u uw kolom als volgt kunt bijwerken:
Flight::where('id', $id)->update([
'destinations->from' => $data['from'],
'destinations->to' => $data['to']
]);
controleer de docs
U hebt toegang tot uw json-sleutels met behulp van de pijl, zodat u uw kolom als volgt kunt bijwerken:
Flight::where('id', $id)->update([
'destinations->from' => $data['from'],
'destinations->to' => $data['to']
]);
controleer de docs