-
Notifications
You must be signed in to change notification settings - Fork 73
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
Filter friends #83
Labels
enhancement
New feature or request
Comments
Also interested. |
Let me check it out |
Honestly, I'm not gonna work on it now, however, I would really appreciate any help (Send me a PR if you can @ange007) |
Example: $friends = $user->getFriendsQueryBuilder()
->where(function($query) use ($query) {
$query->where('name', 'LIKE', "{$query}%")
->orWhere('login', 'LIKE', "{$query}%");
})
->paginate($limit); |
Open
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello!
First of all, great package.
Is there a way to filter friends? At the moment you have the getFriends() method, but there is no way to say "give me all my friends that are from Belgium" for example.
The text was updated successfully, but these errors were encountered: