triggerSyncEvent(); }); static::creating(function (self $model) { if (! $model->getAttribute($model->getGlobalIdentifierKeyName()) && app()->bound(UniqueIdentifierGenerator::class)) { $model->setAttribute( $model->getGlobalIdentifierKeyName(), app(UniqueIdentifierGenerator::class)->generate($model) ); } }); } public function triggerSyncEvent() { /** @var Syncable $this */ event(new SyncedResourceSaved($this, tenant())); } }