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
In my project i need to implement search functionality on different columns. on string column it works fine but it didn't work on integer fields.
Just for example
$code = 256; $branch = Branch::where('code','like',"%".$code."%")->first(); return response()->json([ 'branch' => $branch ]);
The text was updated successfully, but these errors were encountered:
@ultimateakash Regexp is used by string fileds https://docs.mongodb.com/manual/reference/operator/query/regex/
Sorry, something went wrong.
Closing. PR with the fix has been merged and released.
Thanks!
No branches or pull requests
Description:
In my project i need to implement search functionality on different columns. on string column it works fine but it didn't work on integer fields.
Steps to reproduce
Just for example
The text was updated successfully, but these errors were encountered: