laravel 通过created_at字段获取当天数据

我想要通过表中created_at这个字段获取到某一天的数据,但created_at存储的是'2017-09-11 16:10:58'这种(当然我知道它是Carbon),我用下面这个语句去查找肯定是找不到的
``
PostpartumRecord::where('created_at', date('Y-m-d'))->where('user_id', $userId)->first();
``
所以想问下应该如何查找呢?

试试这样:

PostpartumRecord::whereBetween('created_at', [Carbon::today()->startOfDay(),Carbon::today()->endOfDay()])->where('user_id', $userId)->first();
JellyBool
修改的评论也不能少于六个字哦!
Aaron-wlh 回复 JellyBool
修改的评论也不能少于六个字哦!