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