loadViewsFrom(__DIR__ . '/../../resources/views', 'plan'); // Load translation $this->loadTranslationsFrom(__DIR__ . '/../../resources/lang', 'plan'); // 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->registerPlan(); $this->registerFacade(); $this->registerBindings(); //$this->registerCommands(); } /** * Register the application bindings. * * @return void */ protected function registerPlan() { $this->app->bind('plan', function($app) { return new Plan($app); }); } /** * Register the vault facade without the user having to add it to the app.php file. * * @return void */ public function registerFacade() { $this->app->booting(function() { $loader = \Illuminate\Foundation\AliasLoader::getInstance(); $loader->alias('Plan', 'Lavalite\Plan\Facades\Plan'); }); } /** * Register bindings for the provider. * * @return void */ public function registerBindings() { // Bind facade $this->app->bind('realestate.plan', function ($app) { return $this->app->make('Realestate\Plan\Plan'); }); // Bind SubscriptionUsage to repository $this->app->bind( 'Realestate\Plan\Interfaces\SubscriptionUsageRepositoryInterface', \Realestate\Plan\Repositories\Eloquent\SubscriptionUsageRepository::class ); // Bind Subscription to repository $this->app->bind( 'Realestate\Plan\Interfaces\SubscriptionRepositoryInterface', \Realestate\Plan\Repositories\Eloquent\SubscriptionRepository::class ); // Bind Feature to repository $this->app->bind( 'Realestate\Plan\Interfaces\FeatureRepositoryInterface', \Realestate\Plan\Repositories\Eloquent\FeatureRepository::class ); // Bind Plan to repository $this->app->bind( 'Realestate\Plan\Interfaces\PlanRepositoryInterface', \Realestate\Plan\Repositories\Eloquent\PlanRepository::class ); $this->app->register(\Realestate\Plan\Providers\AuthServiceProvider::class); $this->app->register(\Realestate\Plan\Providers\RouteServiceProvider::class); } /** * Merges user's and plan's configs. * * @return void */ protected function mergeConfig() { $this->mergeConfigFrom( __DIR__ . '/../../config/config.php', 'realestate.plan' ); } /** * Register scaffolding command */ protected function registerCommands() { if ($this->app->runningInConsole()) { $this->commands([ Commands\MakePlan::class, ]); } } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['realestate.plan']; } /** * Publish resources. * * @return void */ private function publishResources() { // Publish configuration file $this->publishes([__DIR__ . '/../../config/config.php' => config_path('realestate/plan.php')], 'config'); // Publish admin view $this->publishes([__DIR__ . '/../../resources/views' => base_path('resources/views/vendor/plan')], 'view'); // Publish language files $this->publishes([__DIR__ . '/../../resources/lang' => base_path('resources/lang/vendor/plan')], 'lang'); // Publish public files and assets. $this->publishes([__DIR__ . '/public/' => public_path('/')], 'public'); } }