/**
  * Get all Published projects by User
  *
  * @param int $user_id
  * @return Collection
  */
 public function publishedBy($user_id)
 {
     return $this->model->where(compact('user_id'))->get();
 }