查询created_at的确切时间

时间:2019-03-02 18:10:17

标签: php laravel

我正在尝试查询某个特定日期的销售线索。它通过每分钟运行的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(),
]);

0 个答案:

没有答案