Exemplo n.º 1
0
 /**
  * @param int $id
  *
  * @return mixed
  */
 public function delete($id)
 {
     if ($this->hasDeleteTrait($this->modelInstance)) {
         return $this->destroy($id);
     }
     return $this->modelInstance->destroy($id);
 }