Level 75
Use paginator total method. It will be executed only one query for pagination.
$comments = $product->comments()
->with(['user', 'rating'])
->withCount('replies')
->paginate(5);
$comment_count = $comments->total();
https://laravel.com/docs/8.x/pagination#paginator-instance-methods
1 like