whereIn
が必要です チェックするIDの配列を使用して...
$news = News::whereHas('newsCategories', function($q) use($array_of_ids)
{
$q->whereIn('category_id', $array_of_ids)
->orderBy('created_at', 'desc');
})->get();
本当に配列であるものを渡していることを確認してください:)
whereIn
が必要です チェックするIDの配列を使用して...
$news = News::whereHas('newsCategories', function($q) use($array_of_ids)
{
$q->whereIn('category_id', $array_of_ids)
->orderBy('created_at', 'desc');
})->get();
本当に配列であるものを渡していることを確認してください:)