posts() ->with(['community', 'comments']) ->orderBy('created_at', 'desc') ->paginate(20); $comments = $user->comments() ->with(['post', 'post.community']) ->orderBy('created_at', 'desc') ->paginate(20); return view('users.show', compact('user', 'posts', 'comments')); } }