Laravelでのgroupbyとcountの使用方法
モデルクエリビルダを使用したgroupbyとcountの基本的な使い方:$posts = DB::table('posts') ->select('category', DB::raw('count(*) as total')) ->groupBy('category') ->get(); foreach ($posts as $post) { echo $post->category . ': ' . $post->total . '件'; }>>More