Du kan använda Eloquents whereDoesntHave() begränsning för att få det du behöver:
// get all Videos that don't belong to category 2 and 3
Video::whereDoesntHave('categories', function($query) {
$query->whereIn('id', [2, 3]);
})->get();
Du kan använda Eloquents whereDoesntHave() begränsning för att få det du behöver:
// get all Videos that don't belong to category 2 and 3
Video::whereDoesntHave('categories', function($query) {
$query->whereIn('id', [2, 3]);
})->get();