Bạn có thể thử như:
// returns array of genre_ids associate with the TheMovies.id => 1
$genre_ids = TheGenres::whereHas('TheMovies', function($q) {
$q->where('id', 1);
})->pluck('id')->toArray();
Sau đó, sử dụng $genre_ids
đó để tìm nạp các phim liên quan dưới dạng:
TheMovies::whereHas('TheGenres', function($q) use($genre_ids) {
$q->whereIn('id', $genre_ids);
})->get();
Cập nhật
Giả sử bạn có:
$genre_ids = [21, 23];
thì truy vấn của bạn có thể là:
TheMovies::whereHas('TheGenres', function($q) use($genre_ids) {
$q->whereIn('genreID', $genre_ids)
->groupBy('movieID')
->havingRaw('COUNT(DISTINCT genreID) = 2');
})->get();
Lưu ý - Tôi chưa thử nhưng bạn có thể dùng thử.