# Quick Notes
# whereAttachedTo() - Laravel 12.x
Original PR (opens new window)
# Before
$taggedPosts = Post::whereHas('tags', function ($query) use ($tags) {
$query->whereKey($tags);
})->get();
# After
$taggedPosts = Post::whereAttachedTo($tags)->get();
← Database