आप एलोक्वेंट के whereDoesntHave() . का उपयोग कर सकते हैं आपको जो चाहिए वह प्राप्त करने में बाधा:
// get all Videos that don't belong to category 2 and 3
Video::whereDoesntHave('categories', function($query) {
$query->whereIn('id', [2, 3]);
})->get();