Bạn có thể sử dụng đoạn mã sau để đếm kết quả mô hình quan hệ.
$posts = App\Post::withCount('comments')->get(); foreach ($posts as $post) { echo $post->comments_count; }
Và cũng đặt điều kiện với số lượng như thế này
$posts = Post::withCount(['votes', 'comments' => function ($query) { $query->where('content', 'like', 'foo%'); }])->get();