How can I search data in Laravel using like operator, I have used
encrypt($searchValue);
OR
Crypt::encryptString($searchValue)
But both return full encrypted data but I need searchable data using like operator, In that case, the first name is the encrypted format when is search normal text it returns null
User::where('first_name', 'like', '%' . 'abc' . '%')->get();
//it's return null
When I user
//searchValue is like only 'ab'
User::where('first_name', 'like', '%' . Crypt::encryptString($searchValue) . '%')->get();
//it's also return null
I came across this issue too.
My solution is to use Laravel Scout to build a search index.
Depending on the security policies of the encrypted data (and the search driver you're using), this solution may not be suitable.
I am using the Laravel TNT Search Driver which stores the index on my server.
Then in your controller, or wherever you want to implement the search function:
If you need to do an exact match, you can use the
filter
method on the search results. Doing the search first should provide better performance rather than filtering large sets of data.You can also place constraints on the search function if you need to, for example: