/home/techb158/immovalet.com/platform/core/dashboard/src/Models
Edit: /home/techb158/immovalet.com/platform/core/dashboard/src/Models/DashboardWidget.php (843B)
hasMany(DashboardWidgetSetting::class, 'widget_id', 'id');
}
protected static function boot()
{
parent::boot();
static::deleting(function (DashboardWidget $widget) {
DashboardWidgetSetting::where('widget_id', $widget->id)->delete();
});
}
}