Exemplo n.º 1
0
 protected function ensureDoesNotExist($model)
 {
     if ($this->has($model)) {
         $this->related->remove($model);
         parent::ensureDoesNotExist($model);
     }
 }
Exemplo n.º 2
0
 protected function ensureDoesNotExist($model)
 {
     if ($this->related === $model) {
         $this->related = NULL;
         parent::ensureDoesNotExist($model);
     }
 }