moduleSvc = app('App\Services\ModuleService'); $this->registerTranslations(); $this->registerConfig(); $this->registerViews(); $this->registerLinks(); // Uncomment this if you have migrations // $this->loadMigrationsFrom(__DIR__ . '/../$MIGRATIONS_PATH$'); } /** * Register the service provider. */ public function register() { // } /** * Add module links here */ public function registerLinks(): void { // Show this link if logged in // $this->moduleSvc->addFrontendLink('$STUDLY_NAME$', '/$LOWER_NAME$', '', $logged_in=true); // Admin links: $this->moduleSvc->addAdminLink('$STUDLY_NAME$', '/admin/$LOWER_NAME$'); } /** * Register config. */ protected function registerConfig() { $this->publishes([ __DIR__.'/../Config/config.php' => config_path('$LOWER_NAME$.php'), ], '$LOWER_NAME$'); $this->mergeConfigFrom(__DIR__.'/../Config/config.php', '$LOWER_NAME$'); } /** * Register views. */ public function registerViews() { $viewPath = resource_path('views/modules/$LOWER_NAME$'); $sourcePath = __DIR__.'/../Resources/views'; $this->publishes([$sourcePath => $viewPath],'views'); $this->loadViewsFrom(array_merge(array_map(function ($path) { return $path . '/modules/$LOWER_NAME$'; }, \Config::get('view.paths')), [$sourcePath]), '$LOWER_NAME$'); } /** * Register translations. */ public function registerTranslations() { $langPath = resource_path('lang/modules/$LOWER_NAME$'); if (is_dir($langPath)) { $this->loadTranslationsFrom($langPath, '$LOWER_NAME$'); } else { $this->loadTranslationsFrom(__DIR__ .'/../Resources/lang', '$LOWER_NAME$'); } } }