我尝试使用whereIn获取要升级的数据,但是查询给出了错误。 在whereIn中,如果使whereIn('category_id',[123,2323])没有错误。
但是当我尝试从request($ data2 = $ request-> category;)获取数据时,我无法与whereIn一起使用
$promotions = Promotion::with('product')->with('category')->whereHas(
'category',
function ($q) {
$data2 = $request->category;
$q->whereIn('category_id', $data2);
})
->paginate(9);