Chcete whereIn
s polem vašich ID ke kontrole...
$news = News::whereHas('newsCategories', function($q) use($array_of_ids)
{
$q->whereIn('category_id', $array_of_ids)
->orderBy('created_at', 'desc');
})->get();
Jen se ujistěte, že předáváte něco, co je skutečně pole :)