I want to load all my news with comments. Right now, I am retrieving all news with all comments. However, I only want 2 comments to be shown to each news item.
$news = News::with('user')->with('comments.user')->orderBy('created_at', 'desc')->get();
How do I get only 2 comments out with each news item?