We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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 ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a scope which is created using whereHas :
now if I call this scope before the search scope it works, but calling the search scope before the vendorOf() one will fail.
Any idea why and how to solve this issue ?
The text was updated successfully, but these errors were encountered: