Download the PHP package kalimeromk/filterable without Composer
On this page you can find all versions of the php package kalimeromk/filterable. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kalimeromk/filterable
More information about kalimeromk/filterable
Files in kalimeromk/filterable
Package filterable
Short Description Address commonly face the problem of adding repetitive filtering code
License MIT
Informations about the package filterable
Filterable - Laravel Package for Dynamic Filtering
Filterable is a Laravel package designed to simplify dynamic filtering and searching across models and their relationships, eliminating the need for repetitive query code. It provides an easy-to-use trait and macros for building powerful, dynamic query filters.
Installation
-
Require the package via Composer:
- The package supports auto-discovery, so no manual registration of the service provider is needed. However, if you are using an older Laravel version, add the service provider to your
config/app.php
:
Usage
1. Using whereLike
Macro
The whereLike
macro allows you to perform "LIKE" searches on multiple fields, including related model fields.
Example:
This will return all users where the name
or email
fields contain the string "John".
Searching on Related Models:
This will return all users who have posts with a title or content containing the string "Laravel".
2. Using the Filterable
Trait
The Filterable
trait allows you to dynamically filter a model based on specific criteria, including LIKE
queries, boolean fields, and whereIn
filters, as well as range filters like _min
and _max
.
Setup:
Add the Filterable
trait to your model:
Example Controller:
Example API Request:
-
Request:
- Result:
Returns all active users (
is_active = true
) whose name contains "Jane" and whose age is between 25 and 35.
Testing the Package
This package uses Orchestra Testbench for testing.
Running Tests
To run the tests:
-
Install the dependencies:
- Run PHPUnit:
License
This package is open-sourced software licensed under the MIT license.