loadMigrationsFrom(__DIR__ . '/../Database/Migrations'); Event::listen('catalog.product.update.after', 'Webkul\CatalogRule\Listeners\Product@createProductRuleIndex'); } /** * Register services. * * @return void */ public function register() { $this->registerCommands(); } /** * Register the console commands of this package */ protected function registerCommands() { if ($this->app->runningInConsole()) { $this->commands([PriceRuleIndex::class]); } } }