loadViewsFrom(__DIR__ . '/../../resources/views', 'test'); // Load translation $this->loadTranslationsFrom(__DIR__ . '/../../resources/lang', 'test'); // Load migrations $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); // Call pblish redources function $this->publishResources(); } /** * Register the service provider. * * @return void */ public function register() { $this->mergeConfig(); $this->app->register(\Chemtech\Test\Providers\AuthServiceProvider::class); $this->app->register(\Chemtech\Test\Providers\RouteServiceProvider::class); } /** * Merges user's and test's configs. * * @return void */ protected function mergeConfig() { $this->mergeConfigFrom( __DIR__ . '/../../config/config.php', 'chemtech.test' ); $this->mergeConfigFrom( __DIR__ . '/../../config/condition.php', 'chemtech.test.condition' ); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['chemtech.test']; } /** * Publish resources. * * @return void */ private function publishResources() { // Publish configuration file $this->publishes([__DIR__ . '/../../config/' => config_path('chemtech/test')], 'config'); // Publish admin view $this->publishes([__DIR__ . '/../../resources/views' => base_path('resources/views/vendor/test')], 'view'); // Publish language files $this->publishes([__DIR__ . '/../../resources/lang' => base_path('resources/lang/vendor/test')], 'lang'); // Publish public files and assets. $this->publishes([__DIR__ . '/public/' => public_path('/')], 'public'); } }