Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -90,7 +90,7 @@ class ActivityService | ... | @@ -90,7 +90,7 @@ class ActivityService |
| 90 | { | 90 | { |
| 91 | $activityList = $this->permissionService | 91 | $activityList = $this->permissionService |
| 92 | ->filterRestrictedEntityRelations($this->activity, 'activities', 'entity_id', 'entity_type') | 92 | ->filterRestrictedEntityRelations($this->activity, 'activities', 'entity_id', 'entity_type') |
| 93 | - ->orderBy('created_at', 'desc')->skip($count * $page)->take($count)->get(); | 93 | + ->orderBy('created_at', 'desc')->with('user', 'entity')->skip($count * $page)->take($count)->get(); |
| 94 | 94 | ||
| 95 | return $this->filterSimilar($activityList); | 95 | return $this->filterSimilar($activityList); |
| 96 | } | 96 | } | ... | ... |
-
Please register or sign in to post a comment