Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Reundo's avatar

Retrieve comments and its count() by paginate in one query

Hello guys, I want to retrive comments and comments_count but I want to know that is it possible to do this in one query?

In controller I have this

$comments = $product->comments()
		->with(['user', 'rating'])
		->withCount('replies')->paginate(5);
$comment_count = $product->comments()->count();

Can I do this in one query? or is there a better way to do this?

0 likes
1 reply

Please or to participate in this conversation.