0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Laravelクエリビルダ】データ数をCOUNT関数を用いてカウントする方法

Last updated at Posted at 2021-07-17

laravelのクエリビルダでデータ数をCOUNT関数を用いてカウントする方法を解説します。
バージョンは6系です。

ゴール

postsテーブルにあるuser_id数をカウントします。
スクリーンショット 2021-07-18 0.58.48.png


ユーザー数:3

実際に書いていこう

モデル

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\DB;

class Post extends Model
{
  public function getCountByUser()
  {
    return DB::table('posts')
            ->selectRaw('COUNT(user_id) AS count_user')
            ->get();
  }
}

COUNT関数を使ってユーザー数をカウントしています。

コントローラー

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use App\Post;

class PostController extends Controller
{
    public function index()
    {
        $this->posts = new Post();

        $results = $this->posts->getCountByUser();

        return view('posts.index', compact(
            'results',
        ));
    }
}

ビュー

<table>
    <thead>
      <tr>
        <th>ユーザー数</th>
      </tr>
    </thead>
    <tbody>
    @foreach ($results as $result)
      <tr>
        <td>{{ $result->count_user }}</td>
      </tr>
    @endforeach
    </tbody>
</table>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?