registerBindings(); $this->app['events']->listen(BuildingSidebar::class, $SIDEBAR_LISTENER_NAME$::class); $this->app['events']->listen(LoadingBackendTranslations::class, function (LoadingBackendTranslations $event) { // append translations }); } public function boot() { $this->publishConfig('$LOWERCASE_MODULE$', 'permissions'); $this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations'); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return array(); } private function registerBindings() { // add bindings } }