Exemplo n.º 1
0
 /**
  * Mount the configuration.
  *
  * @param  string|null $prefix
  *
  * @return void
  */
 public function mount($prefix = null)
 {
     if ($prefix) {
         $this->router->group(['prefix' => $prefix], function () {
             $this->registerRoutes();
         });
     } else {
         $this->registerRoutes();
     }
 }