Фактически созданный наблюдатель по команде php artisan make:observer ProfileObserver --model=Profile
В AppServiceProvider.php: -
public function boot(Request $request) {
Profile::observe(ProfileObserver::class);
}
В ProfileObserver.php: -
public function updating(Profile $profile) {
die('here');
}
и фактически яесть модель Профиль Почему наблюдатель не работает ??