laravelのクエリビルダでデータ数をCOUNT関数を用いてカウントする方法を解説します。
バージョンは6系です。
ゴール
↓
ユーザー数: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>