loadViewsFrom(__DIR__ . '/../../../../resources/views', 's'); // Load translation $this->loadTranslationsFrom(__DIR__ . '/../../../../resources/lang', 's'); // Call pblish redources function $this->publishResources(); include __DIR__ . '/../Http/routes.php'; } /** * Register the service provider. * * @return void */ public function register() { // Bind facade $this->app->bind('s', function ($app) { return $this->app->make('S\S\S'); }); // Bind Www to repository $this->app->bind( \S\S\Interfaces\WwwRepositoryInterface::class, \S\S\Repositories\Eloquent\WwwRepository::class ); $this->app->register(\S\S\Providers\AuthServiceProvider::class); $this->app->register(\S\S\Providers\EventServiceProvider::class); $this->app->register(\S\S\Providers\RouteServiceProvider::class); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['s']; } /** * Publish resources. * * @return void */ private function publishResources() { // Publish configuration file $this->publishes([__DIR__ . '/../../../../config/config.php' => config_path('package/s.php')], 'config'); // Publish public view $this->publishes([__DIR__ . '/../../../../resources/views/public' => base_path('resources/views/vendor/s/public')], 'view-public'); // Publish admin view $this->publishes([__DIR__ . '/../../../../resources/views/admin' => base_path('resources/views/vendor/s/admin')], 'view-admin'); // Publish language files $this->publishes([__DIR__ . '/../../../../resources/lang' => base_path('resources/lang/vendor/s')], 'lang'); // Publish migrations $this->publishes([__DIR__ . '/../../../../database/migrations/' => base_path('database/migrations')], 'migrations'); // Publish seeds $this->publishes([__DIR__ . '/../../../../database/seeds/' => base_path('database/seeds')], 'seeds'); } }