我正在尝试查询某个特定日期的销售线索。它通过每分钟运行的cron作业运行,因此created_at
必须在确切的分钟上。
我提出了似乎有效的查询,但是有一种更好的方法来编码我不知道的whereBetween
吗?
$age_unit = 'Days';
$age_amount = 7;
Lead::whereBetween('created_at', [
Carbon::now()->{'sub' . $age_unit}($age_amount)->startOfMinute(),
Carbon::now()->{'sub' . $age_amount}($age_amount)->endOfMinute(),
]);