laravel-search-string
laravel-search-string copied to clipboard
🔍 Generates database queries based on one unique string
Hi, when search email address "[email protected]" not work, remove @ like "admin" or "email.com" work fine, but can't found a complete email address "[email protected]", how do to search by email...
Search returns no results when there are non-latin (Turkish) characters.
When I set up laravel-search-string, and then use a search string e.g. "sort:invalid-field" then a database exception is raised (Undefined column: 7 ERROR: column table.invalid-field). I don't think I've done...
Provides a more flexible API (i.e. column options) that allows us to use a query scope such as `scopeMyCustomScope($query, $valueEnteredByTheUser)`. When such scope is provided, the package will delegate to...
How can I make the following query return all matches LIKE "My blog article" instead of only exact matches? `Article::usingSearchString('title:"My blog article" or not published sort:-created_at');`
Support for things like ``` date < "5 days ago" date >= "last week" date = "2 years ago" date = "7 months from now" date = "past month" date...
Not so much an issue yet but a heads up. Recent upgrades alerted me to this and the `hoa/compiler` which is required dependency of `laravel-search-string` is now abandoned, but there...