loadMigrationsFrom(__DIR__ . '/Migrations'); Event::listen(BookingCreatedEvent::class,BookingCreatedListen::class); Event::listen(BookingUpdatedEvent::class,BookingUpdateListen::class); Event::listen(SetPaidAmountEvent::class,SetPaidAmountListen::class); } /** * Register bindings in the container. * * @return void */ public function register() { $this->app->register(RouterServiceProvider::class); } }