Search Results

Go to the documentation of this file.
1 <?php namespace App\Providers;
2 
4 
5 class MacroServiceProvider extends ServiceProvider {
6 
12  public function boot()
13  {
14  // require base_path() . '/resources/macros/community_types.php';
15  foreach(glob(base_path('resources/macros/*.php')) as $filename) {
16  require_once($filename);
17  }
18 
19  }
20 
26  public function register()
27  {
28  //
29  }
30 
31 }
boot()
Bootstrap the application services.