我正在尝试使用 laravel db 从我的数据库中获取一些数据并且它抛出错误
$most_purchased_day = (int)Data::select('type')
->whereDate('created_at', '=', date('d'))
->groupBy('type')
->orderByRaw('COUNT(*) DESC')
->first()->network_id;
$most_purchased_day = (int)Data::select('type')
->whereDate('created_at', '=', date('d'))
->groupBy('type')
->orderByRaw('COUNT(*) DESC')
->first()->network_id;
我希望输出是基于网络 ID 购买最多的商品
慕码人2483693