/**
  * @param  integer $id
  * @return \RedpotionAdmin\Eloquents\Site | false
  */
 public function destroy($id)
 {
     if ($this->feed->destroy($id)) {
         return $this->feed->withTrashed()->find($id);
     }
     return false;
 }