按天分组数据:
Event::where('created_at',' ',Carbon::parse($request- start_date))
- where('created_at','<',Carbon...groupBy('date')
- get([DB::raw('DATE(created_at) as date'),DB::raw('COUNT(*) as value')])
- toArray();
如果想按小时分组所有查询出来的数据...: [moment(), moment().subtract(-1, 'days')],
'昨天': [moment().subtract(1, 'days'), moment()],
'前7天'...: [moment().subtract(7, 'days'), moment()],
'前30天': [moment().subtract(30, 'days'), moment()],
'本月...以上这篇laravel按天、按小时,查询数据的实例就是小编分享给大家的全部内容了,希望能给大家一个参考。