我试图得到所有的职位,至少有2个评论在过去48小时.我用下面的代码:
$posts= Post::has( 'comments', '>', 1 )->whereHas( 'comments', function( $comments ) {
return $comments->where( 'created_at', '>', Carbon::now()->subDays(2) );
})->get()->toArray();
1.至少有2条评论,工作正常。
1.都不起作用。
1条答案
按热度按时间svgewumm1#
你能这样试试吗?