我试图从created_at
日期已超过30天的“用户”模型中提取对象。
Carbon :: now()==>我要==> Carbon :: now()-30天
$users = Users::where('status_id', 'active')
->where( 'created_at', '<', Carbon::now())
->get();
如何实现呢?
Answers:
使用subDays()
方法:
$users = Users::where('status_id', 'active')
->where( 'created_at', '>', Carbon::now()->subDays(30))
->get();
<
,它将返回在now minus 30 days
point之前创建的所有用户。
more
意思是later
这里。也Carbon::now() ==> I want as ==> Carbon::now() - 30days
几乎解释了OP想要什么。