web-dev-qa-db-ja.com

Laravel hasManyリレーションカウント投稿へのいいねとコメントの数

コード:

$posts = Jumpsite::find($jid)
            ->posts()
            ->with('comments')
            ->with('likes')
            ->with('number_of_comments')
            ->with('number_of_likes')
            ->where('reply_to', 0)
            ->orderBy('pid', 'DESC')
            ->paginate(10);

各投稿にはコメントといいねがあります。大きな負荷を避けるために、最初はコメントのいくつかだけを表示します。ただし、各投稿のコメントといいねの合計数を示したいと思います。どうすればよいですか?

モデルコード:

public function likes()
{
    return $this->hasMany('Like', 'pid', 'pid');
}

public function comments()
{
    return $this->hasMany('Post', 'reply_to', 'pid')->with('likes')->take(4);
}

public function number_of_likes()
{
    return $this->hasMany('Like', 'pid', 'pid')->count();
}

注意:

This is an API. All will be returned as JSON.

更新

リターン

Post
    author_id
    message
    Comments(recent 4)
        user_id
        message
        post_date
        Number_of_likes
    Likes
        user_id
    Number_of_total_comments
    Number_of_total_likes

更新

データを返す方法

$posts  = $posts->toArray();
$posts  = $posts['data'];

return Response::json(array(
   'data' => $posts
));

それを使用するだけで、jsonに必要なすべてのデータを取得できます。ただし、合計数も追加したいと思います。


更新

protected $appends = array('total_likes');

public function getTotalLikesAttribute()
{
   return $this->hasMany('Like')->whereUserId($this->uid)->wherePostId($this->pid)->count();

}

しかし、エラーが発生します:

 Unknown column 'likes.post_id'

エラー

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'likes.post_id' in 'where clause' (SQL: select count(*) as aggregate from `likes` where `likes`.`deleted_at` is null and `likes`.`post_id` = 4 and `pid` = 4 and `uid` = 1)
8
majidarif

モデルに次のアクセサを配置します。

いいねの総数:

 public function getTotalLikesAttribute()
 {
    return $this->hasMany('Like')->whereUserId($this->author_id)->count();

 }

合計コメント数:

あなたの説明から、私は見ることができます、あなたはコメントとして投稿の数を取得しています

public function getTotalCommentsAttribute()
{
    return $this->hasMany('Post')->whereUserId($this->author_id)->count();    
}

今、あなたのコントローラーから:

$post  = Jumpsite::find($jid);

// total comments
var_dump( $post->total_comments );

// total Likes
var_dump( $post->total_likes );
9
Anam

次のコードを使用して、リレーションモデルの結果をカウントできます。

 $posts = App\Post::withCount('comments')->get(); foreach ($posts as $post) { echo $post->comments_count; }

そして、このようにカウントで条件を設定します

$posts = Post::withCount(['votes', 'comments' => function ($query) { $query->where('content', 'like', 'foo%'); }])->get();
8
sachin kumar

Laravelのすべてのブログ投稿のコメントを数える

ステップ1:このコードを「投稿」モデル内に配置します。

// Get the comments for the blog post.
public function comments()
{
    return $this->hasMany('App\Comment');
}

ステップ2:このコードを「PostController」コントローラー内に配置します。

 $posts= Post::all();
 return view('home')->with('posts', $posts);

ステップ3:次に、以下のコードを使用して、すべての投稿のコメントをカウントします。

@foreach($posts as $row)
 {{$row->comments->count()}}
@endforeach

詳細はこちらをご覧ください: http://www.pranms.com/count-comments-for-all-blog-posts-in-laravel/

2
Mamun Rasid

カウントの結果を取得するための単一の変更

関係で

 public function getTotalLikesAttribute(){
    return $this->hasMany('Like')->where('author_id',$this->author_id)->count();
}

ビューで

$post->getTotalLikesAttribute()
0
Adan Luna