1
功能我有一個具有我所定義的,像這樣自定義「接觸」爲Laravel模式
protected $touches = ['parent'];
我希望做類似的是什麼東西touches
陣列在我的數據庫,並在子模型一對多的關係在這兩個問題描述:
但是稍有不同,我希望在父模型上的布爾列在子模型中發生更改時進行更新。這適用於觸摸,但我無法弄清楚如何使用自定義屬性來代替。
我在父模型無濟於事試過這樣:
public static function boot()
{
parent::boot();
static::updating(function ($table) {
$table->is_finished = true;
});
}