我认为这个问题标题是自描述的。
事实上,我想选择碳和where clauses在laravel中created_at
属性以来超过24 的所有行。
$question = Question::where('created_at',/* what do I here*/);
我该怎么做?
答案 0 :(得分:3)
答案 1 :(得分:1)
$question = Question::where('created_at', date("Y-m-d H:i:s",strtotime("22-11-2016"."-1 day")));