📅  最后修改于: 2022-03-11 14:53:54.547000             🧑  作者: Mango
Method # 1
Mood::where('created_at', '>=', Carbon::now()->subDay())->get();
Method # 2
Mood::whereBetween('created_at', [now()->subMinutes(1440), now()])->get();