app->register(SmsServiceProvider::class); $this->app->register(RouterServiceProvider::class); } public function boot(){ Event::listen(BookingCreatedEvent::class,SendSmsBookingListen::class); Event::listen(BookingUpdatedEvent::class,SendSmsUpdateBookingListen::class); } }