Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to eager load relationships? #98

Open
francoism90 opened this issue May 20, 2023 · 0 comments
Open

How to eager load relationships? #98

francoism90 opened this issue May 20, 2023 · 0 comments

Comments

@francoism90
Copy link
Contributor

francoism90 commented May 20, 2023

I already searched for solutions, and tried things like this:
#52
#68

However, this still results in:
image

The reason being is that I'm using this differently:

public function getFavoriteAttribute(?User $user = null): bool
    {
        return $this->isFavoritedBy(
            $user ?? auth()->user()
        );
    }

    public function getFollowingAttribute(?User $user = null): bool
    {
        return $this->isFollowedBy(
            $user ?? auth()->user()
        );
    }

Could you please point me in the correct direction? I would like to reduce the number of queries.

Many thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant