Exemplo n.º 1
0
 /**
  * Update tags for the model
  * @method updateTags
  * @return [type]     [description]
  */
 public function updateTags()
 {
     if (!method_exists($this, 'tags')) {
         return $this;
     }
     $tags = Input::get('tags', []);
     Tag::resolveTags($this, $tags);
     return $this;
 }