make observer by follow command in Artisan: ----------------------------------------------  php artisan make:Observer ProductObserver --model=<put here path of your Model>      then in app/providers/EventServiceProvider.php at boot Methode write follow code: ----------------------------------------------------------------------------------   public function boot()     {         Product::observe(ProductObserver::class);     }  

Read more of this post