/**
  * Bootstrap the application events.
  */
 public function boot()
 {
     parent::boot();
     $this->publishConfig();
     $this->registerValidatorRules();
     $this->registerFormMacros();
 }
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     $this->publishConfig();
     $this->publishMigrations();
     $this->publishFactories();
 }
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     // Publishes
     $this->publishConfig();
     $this->publishViews();
 }
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     // Publishes
     $this->publishConfig();
     $this->publishTranslations();
 }
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     $this->registerPublishes();
 }
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     // Publish the config file.
     $this->publishes([$this->getConfigFile() => config_path("{$this->package}.php")], 'config');
 }
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     $this->publishConfig();
 }
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     $this->registerPublishes();
     $this->registerBladeDirectives();
 }
 /**
  * Boot the package.
  */
 public function boot()
 {
     parent::boot();
 }
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     $this->publishes([$this->getConfigFile() => config_path('settings.php')], 'config');
     $this->publishes([$this->getBasePath() . '/database/migrations/' => database_path('migrations')], 'migrations');
 }
 /**
  * Boot the package.
  */
 public function boot()
 {
     parent::boot();
     $this->publishConfig();
     $this->registerViews();
 }