loadViewsFrom(__DIR__ . '/../../resources/views', 'objects'); // Load translation $this->loadTranslationsFrom(__DIR__ . '/../../resources/lang', 'objects'); // 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->registerObjects(); $this->registerFacade(); $this->registerBindings(); //$this->registerCommands(); } /** * Register the application bindings. * * @return void */ protected function registerObjects() { $this->app->bind('objects', function($app) { return new Objects($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('Objects', 'Lavalite\Objects\Facades\Objects'); }); } /** * Register bindings for the provider. * * @return void */ public function registerBindings() { // Bind facade $this->app->bind('btravel.objects', function ($app) { return $this->app->make('Btravel\Objects\Objects'); }); // Bind Ship to repository $this->app->bind( 'Btravel\Objects\Interfaces\ShipRepositoryInterface', \Btravel\Objects\Repositories\Eloquent\ShipRepository::class ); // Bind Hotel to repository $this->app->bind( 'Btravel\Objects\Interfaces\HotelRepositoryInterface', \Btravel\Objects\Repositories\Eloquent\HotelRepository::class ); // Bind Club to repository $this->app->bind( 'Btravel\Objects\Interfaces\ClubRepositoryInterface', \Btravel\Objects\Repositories\Eloquent\ClubRepository::class ); $this->app->register(\Btravel\Objects\Providers\AuthServiceProvider::class); $this->app->register(\Btravel\Objects\Providers\RouteServiceProvider::class); } /** * Merges user's and objects's configs. * * @return void */ protected function mergeConfig() { $this->mergeConfigFrom( __DIR__ . '/../../config/objects.php', 'objects' ); } /** * Register scaffolding command */ protected function registerCommands() { if ($this->app->runningInConsole()) { $this->commands([ Commands\MakeObjects::class, ]); } } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['btravel.objects']; } /** * Publish resources. * * @return void */ private function publishResources() { // Publish configuration file $this->publishes([__DIR__ . '/../../config/config.php' => config_path('btravel/objects.php')], 'config'); // Publish admin view $this->publishes([__DIR__ . '/../../resources/views' => base_path('resources/views/vendor/objects')], 'view'); // Publish language files $this->publishes([__DIR__ . '/../../resources/lang' => base_path('resources/lang/vendor/objects')], 'lang'); // Publish public files and assets. $this->publishes([__DIR__ . '/public/' => public_path('/')], 'public'); } }