-1
{{ App\Like::where('post_id', $post->id)->count() }}
特定のpost_idを持ち、 'like'列が1に設定されている行をフェッチしたいと思います。Laravelモデルで複数の句を使用する行数をカウントする
{{ App\Like::where('post_id', $post->id)->count() }}
特定のpost_idを持ち、 'like'列が1に設定されている行をフェッチしたいと思います。Laravelモデルで複数の句を使用する行数をカウントする
{{ App\Like::where('post_id', $post->id)->where('like', 1)->count() }}
ちょうど別where