コード例 #1
0
 /**
  * Bootstrap the application events.
  */
 public function boot()
 {
     parent::boot();
     $this->publishConfig();
     $this->registerValidatorRules();
     $this->registerFormMacros();
 }
コード例 #2
0
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     $this->publishConfig();
     $this->publishMigrations();
     $this->publishFactories();
 }
コード例 #3
0
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     // Publishes
     $this->publishConfig();
     $this->publishViews();
 }
コード例 #4
0
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     // Publishes
     $this->publishConfig();
     $this->publishTranslations();
 }
コード例 #5
0
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     $this->registerPublishes();
 }
コード例 #6
0
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     // Publish the config file.
     $this->publishes([$this->getConfigFile() => config_path("{$this->package}.php")], 'config');
 }
コード例 #7
0
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     $this->publishConfig();
 }
コード例 #8
0
 /**
  * Boot the service provider.
  */
 public function boot()
 {
     parent::boot();
     $this->registerPublishes();
     $this->registerBladeDirectives();
 }
コード例 #9
0
 /**
  * Boot the package.
  */
 public function boot()
 {
     parent::boot();
 }
コード例 #10
0
 /**
  * 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');
 }
コード例 #11
0
 /**
  * Boot the package.
  */
 public function boot()
 {
     parent::boot();
     $this->publishConfig();
     $this->registerViews();
 }