Код: Выделить всё
class Zone extends Model {
protected $events = [
'updated' => ZoneUpdated::class,
];
}
< /code>
Слушатель событий, который запускается, тоже обновит модель: < /p>
class ZoneUpdated {
public function handle(ZoneUpdated $event)
{
Zone::find($event->zone->id)->update([
'updated' => true,
'valid' => 'u',
]);
}
}
Подробнее здесь: https://stackoverflow.com/questions/428 ... e-listener