Example #1
0
 public function getFeedForUser(User $user)
 {
     $userIds = $user->follows()->lists('followed_id');
     $userIds[] = $user->id;
     return Status::with('comments')->whereIn('user_id', $userIds)->latest()->get();
 }