Exemplo n.º 1
0
 /**
  * Register container bindings for the application.
  *
  * @return void
  */
 protected function registerValidationBindings()
 {
     $this->singleton('validator', function () {
         $validator = new Validator($this);
         return $validator->setConnection(app('capsule')->getDatabaseManager());
         // return new Validator;
     });
 }