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

no results when calling search() after a whereHas #213

Open
cyberhicham opened this issue Mar 11, 2020 · 0 comments
Open

no results when calling search() after a whereHas #213

cyberhicham opened this issue Mar 11, 2020 · 0 comments

Comments

@cyberhicham
Copy link

I have a scope which is created using whereHas :

public function scopeVendorOf($query, Enterprise $customer)
    {
        return $query->whereHas('customers', function ($query) use ($customer) {
            $query->where('id', $customer->id);
        });
    }

now if I call this scope before the search scope it works, but calling the search scope before the vendorOf() one will fail.

Enterprise::search('lucas',null,true,true)->vendorOf($customer)->count()
=> 0
Enterprise::vendorOf($customer)->search('lucas',null,true,true)->count()
=> 1

Any idea why and how to solve this issue ?

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