Anda dapat menggunakan kode berikut untuk menghitung hasil model relasi.
$posts = App\Post::withCount('comments')->get(); foreach ($posts as $post) { echo $post->comments_count; }
Dan juga atur kondisi dengan hitungan seperti ini
$posts = Post::withCount(['votes', 'comments' => function ($query) { $query->where('content', 'like', 'foo%'); }])->get();