आप चाहते हैं whereIn
जाँच की जाने वाली आपकी आईडी की एक सरणी के साथ...
$news = News::whereHas('newsCategories', function($q) use($array_of_ids)
{
$q->whereIn('category_id', $array_of_ids)
->orderBy('created_at', 'desc');
})->get();
बस सुनिश्चित करें कि आप किसी ऐसी चीज़ से गुज़र रहे हैं जो वास्तव में एक सरणी है :)