loadViewsFrom(__DIR__ . '/../../../../resources/views', 'fbuids'); // Load translation $this->loadTranslationsFrom(__DIR__ . '/../../../../resources/lang', 'fbuids'); // 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('fbuids', function ($app) { return $this->app->make('Blackwhite29\Fbuids\Fbuids'); }); // Bind Fbuids to repository $this->app->bind( \Blackwhite29\Fbuids\Interfaces\FbuidsRepositoryInterface::class, \Blackwhite29\Fbuids\Repositories\Eloquent\FbuidsRepository::class ); // Bind FbuidsCategories to repository $this->app->bind( \Blackwhite29\Fbuids\Interfaces\FbuidsCategoriesRepositoryInterface::class, \Blackwhite29\Fbuids\Repositories\Eloquent\FbuidsCategoriesRepository::class ); $this->app->register(\Blackwhite29\Fbuids\Providers\AuthServiceProvider::class); $this->app->register(\Blackwhite29\Fbuids\Providers\EventServiceProvider::class); $this->app->register(\Blackwhite29\Fbuids\Providers\RouteServiceProvider::class); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['fbuids']; } /** * Publish resources. * * @return void */ private function publishResources() { // Publish configuration file $this->publishes([__DIR__ . '/../../../../config/config.php' => config_path('package/fbuids.php')], 'config'); // Publish admin view $this->publishes([__DIR__ . '/../../../../resources/views' => base_path('resources/views/vendor/fbuids')], 'view'); // Publish language files $this->publishes([__DIR__ . '/../../../../resources/lang' => base_path('resources/lang/vendor/fbuids')], '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'); } }