public function relatedFeeds() { $commonFeeds = Feed::common()->orderBy('created_at'); $myFeeds = Feed::whereIn('project_id', $this->projects->lists('id'))->orderBy('created_at'); return $commonFeeds->get()->merge($myFeeds); }