Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678910111213141516171819 |
- <?php
-
- namespace App\Concerns;
-
- 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));
- });
- }
- }
|