选择自laravel创建以来超过24小时的模型

时间:2016-11-22 08:53:33

标签: php laravel php-carbon

我认为这个问题标题是自描述的。

事实上,我想选择where clauses在laravel中created_at属性以来超过24 的所有行。

$question = Question::where('created_at',/* what do I here*/);

我该怎么做?

2 个答案:

答案 0 :(得分:3)

试试这个:

$question = Question::where('created_at', '>=', Carbon::now()->subDay())->get();

Description

答案 1 :(得分:1)

$question = Question::where('created_at', date("Y-m-d H:i:s",strtotime("22-11-2016"."-1 day")));