12345678910111213141516171819 |
- <?php
-
- namespace App\Traits;
-
- use App\Events\CompanyDefaultEvent;
-
- trait SyncsWithCompanyDefaults
- {
- public static function bootSyncsWithCompanyDefaults(): void
- {
- static::created(static function ($model) {
- event(new CompanyDefaultEvent($model));
- });
-
- static::updated(static function ($model) {
- event(new CompanyDefaultEvent($model));
- });
- }
- }
|