# 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();
Last Updated: 6/26/2025, 08:49:49