Esempio n. 1
0
 /**
  * Bootstrap the application services.
  */
 public function boot()
 {
     try {
         $this->customJsPlugin();
         $this->customCssPlugin();
         $this->addAssetAfter();
         $this->addAssetBefore();
     } catch (QueryException $e) {
         // \\_(",)_//
     }
     FileAsset::saved(function () {
         $this->app['cache.store']->forget('fileAssets.all');
     });
     FileAsset::deleted(function () {
         $this->app['cache.store']->forget('fileAssets.all');
     });
 }