我有两个模型User
和Posts
我想检查一些user
posts
是否title
给定$user = User::find($userId);
$posts = $user->posts;
$postsWithGivenTitle = $posts->where('title','=',$title);
$postCount = $postsWithGivenTitle->count();
。
$user = User::find($userId)->withCount(['posts' => function ($q) use ($title) {
$q->where('title','=',$title);
}])->first();
我认为上面的内容应该可行,但我需要超越这个并高效地完成它。所以我得到了它并且它正在工作,但仍然不确定它是否正确。
if ($user->posts_count > 0) {
//do something
}
然后检查计数:
find()
令我感到困惑的是,看起来很丑,在同一个查询中使用了first()
和foreach
方法。所以希望我在这里错过了一些简单的东西并且过度思考它。
由于
答案 0 :(得分:0)
正如您在文档中看到的那样:https://laravel.com/docs/5.3/eloquent-relationships
你可以像这样实现你想要的东西:
$user = User::withCount(['posts' => function($q){....}])->find($id)