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
How would I create a filter to only show items created by a user?
Also how would i set the user's id on save so it can be stored in database?
The text was updated successfully, but these errors were encountered:
You could do something like this:
public function configureFilters($mapper) { $users = []; foreach (User::groupBy('email')->get() as $user) { $users[$user->email] = $user->email; } $mapper->select('email')->options($users); }
Sorry, something went wrong.
This allows me to a user to filter by different users.
How do I make so the user can only see items they created?
No branches or pull requests
How would I create a filter to only show items created by a user?
Also how would i set the user's id on save so it can be stored in database?
The text was updated successfully, but these errors were encountered: