假设我将Posts
和Comments
定义为:
Post.php
public function comments()
{
return $this->hasMany('App\Comment');
}
Comment.php
public function post()
{
return $this->belongsTo('App\Post');
}
我想有效地加载带有number of comments
和最后更新的评论的updated_at
列的Post。我将如何进行?
我能想到的最好的方法是将所有评论都加载到Post中,但是将对{Selects of Comments}的选择限制在post_id
和updated_at
列中。然后在视图中计数已加载的注释以获取计数,并使用sortByDesc('updated_at')->first()
获取最后一列的日期:
MyController.php
Post::with([
'comments' => function($q) {
$q->select('post_id','updated_at');
}
])->get();
my_view.blade.php
Comments count: {{ $posts->comments->count() }}
Last comment: {{ $posts->comments->sortByDesc('updated_at')->first()->updated_at }}
是否有一种方法可以更有效地执行此操作,并且仅获得最新comments.updated_at
列的评论数和值?
MySQL或口才解决方案还可以。
谢谢!
答案 0 :(得分:0)
您可以使用withCount()
来实现这两者:
Post::withCount([
'comments',
'comments as last_comment' => function($q) {
$q->select(DB::raw('max(updated_at)'));
}
])->get();
Comments count: {{ $post->comments_count }}
Last comment: {{ $post->last_comment }}