Ich habe ein eloquentes Modell, das ein verwandtes Modell hat: public function option() { return $this->hasOne('RepairOption', 'repair_item_id'); } public function setOptionArrayAttribute($values) { $this->option->update($values); } Wenn ich das Modell erstelle, muss es nicht unbedingt ein...