Exemplo n.º 1
0
 public function update(Category $category)
 {
     $this->validateUniqueNameCategory($this->get('category'), $category->id);
     $category->fill($this->all());
     if (!$category->update()) {
         $this->failedUpdateModel();
     }
     return $category;
 }