EloquentのwhereDoesntHave()を使用できます 必要なものを取得するための制約:
// get all Videos that don't belong to category 2 and 3
Video::whereDoesntHave('categories', function($query) {
$query->whereIn('id', [2, 3]);
})->get();
EloquentのwhereDoesntHave()を使用できます 必要なものを取得するための制約:
// get all Videos that don't belong to category 2 and 3
Video::whereDoesntHave('categories', function($query) {
$query->whereIn('id', [2, 3]);
})->get();