loadRoutes(); } /** * Boot the application events. * * @return void */ public function boot() { $this->loadViews(); $this->loadViewComponents(); $this->loadTranslations(); $this->loadMigrations(); //$this->loadConfig(); } /** * Load views. * * @return void */ public function loadViews() { $this->loadViewsFrom(__DIR__ . '/../Resources/views', '$ALIAS$'); } /** * Load view components. * * @return void */ public function loadViewComponents() { Blade::componentNamespace('$COMPONENT_NAMESPACE$', '$ALIAS$'); } /** * Load translations. * * @return void */ public function loadTranslations() { $this->loadTranslationsFrom(__DIR__ . '/../Resources/lang', '$ALIAS$'); } /** * Load migrations. * * @return void */ public function loadMigrations() { $this->loadMigrationsFrom(__DIR__ . '/../$MIGRATIONS_PATH$'); } /** * Load config. * * @return void */ public function loadConfig() { $this->mergeConfigFrom(__DIR__ . '/../$PATH_CONFIG$/config.php', '$ALIAS$'); } /** * Load routes. * * @return void */ public function loadRoutes() { if (app()->routesAreCached()) { return; } $routes = [ 'admin.php', 'portal.php', ]; foreach ($routes as $route) { $this->loadRoutesFrom(__DIR__ . '/../$ROUTES_PATH$/' . $route); } } /** * Get the services provided by the provider. * * @return array */ public function provides() { return []; } }