Download the PHP package laravie/query-filter without Composer
On this page you can find all versions of the php package laravie/query-filter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download laravie/query-filter
More information about laravie/query-filter
Files in laravie/query-filter
Package query-filter
Short Description Database/Eloquent Query Builder filters for Laravel
License MIT
Informations about the package query-filter
Database/Eloquent Query Builder filters for Laravel
Installation
To install through composer, run the following command from terminal:
composer require "laravie/query-filter"
Usages
Order Queries
The class provides a simple interface to handle ORDER BY
queries to Laravel Eloquent/Query Builder.
The code will validate the column name before trying to apply
orderBy()
to the query, this would prevent SQL injection especially when column is given by the user.
Search Queries
The class provides a simple interface to LIKE
queries to Laravel Eloquent/Query Builder.
Search with wildcard
Set specific %
or *
wildcard to reduce the possible LIKE
s variations.
Search with exact wildcard
Use noWildcardSearching()
to disable adding additional search condition.
Search with JSON path
This would allow you to query JSON path using LIKE
with case insensitive.
Search with Relations
This would make it easy to search results not only in the current model but also it's relations.
Relations search can only be applied to
Illuminate\Database\Eloquent\Builder
as it need to ensure that the relationship exists viawhereHas()
queries.
Search with Morph Relations
You can use polymorphic relationship search using the following options:
Taxonomy Queries
Taxonomy always developers to create a set of rules to group the search keywords using WHERE ... AND
. For any un-grouped keyword it will be executed via Laravie\QueryFilter\Searchable
based on given $columns
.
Integrations
Query Builder Macro
You can integrate Searchable
with database or eloquent query builder macro by adding the following code to your AppServiceProvider
(under register
method):
Using with Laravel Nova
You can override the default Laravel global and local search feature by adding the following methods on app/Nova/Resource.php
:
All versions of query-filter with dependencies
illuminate/database Version ^10.17 || ^11.0
illuminate/support Version ^10.17 || ^11.0