user(); $friendship = $me->friendshipWith($user); $posts = $user->posts() ->with(['author', 'likes', 'comments.author']) ->latest() ->paginate(10); return view('social.profile', compact('user', 'friendship', 'posts')); } }