indexzer0/eloquent-filtering

Powerful eloquent filtering
33,770 224
Install
composer require indexzer0/eloquent-filtering
Latest Version:2.2.2
PHP:^8.2
License:MIT
Last Updated:Jun 22, 2026
Links: GitHub  ·  Packagist
Maintainer: IndexZer0

Filter example

Latest Version on Packagist Total Downloads GitHub Tests Action Status Codecov


Eloquent Filtering simplifies implementing search functionality for your Eloquent models, whether simple or complex, by eliminating the need for custom query logic. It allows you to easily define and manage filters directly within your models, and seamlessly apply them using incoming HTTP request data to dynamically filter your models.

With this package, you can build more readable, maintainable, and scalable code, boosting your productivity and speeding up development.

Whether you’re building APIs, dashboards, or advanced search systems, Eloquent Filtering provides a powerful and flexible way to streamline your Eloquent queries, making it easier to manage and extend your application’s filtering capabilities.


View The Docs


Quick Look

class Product extends Model implements IsFilterable
{
    use Filterable;

    public function allowedFilters(): AllowedFilterList
    {
        return Filter::only(
            Filter::field('name', [FilterType::EQUAL]),
        );
    }
}

$products = Product::filter([
    [
        'target' => 'name',
        'type'   => '$eq',
        'value'  => 'TV'
    ]
])->get();

Requirements

  • PHP Version >= 8.2
  • Laravel Version >= 10

Installation

You can install the package via composer:

composer require indexzer0/eloquent-filtering

Run the install artisan command to publish the config:

php artisan eloquent-filtering:install

Testing

composer test

Docs

npm i -g mintlify
cd docs
mintlify dev

Changelog

Please see CHANGELOG for more information on what has changed recently.


Feature Ideas

Please see Feature ideas for potential future features.


Credits


License

The MIT License (MIT). Please see License File for more information.

Related Packages

kyslik/column-sortable

Package for handling column sorting in Laravel 6.x

6,027,159 647
jedrzej/pimpable

Laravel 4/5/6 package that allows to dynamically filter, sort and eager load rel...

190,397 104
rutorika/sortable

Adds sortable behavior and ordering to Laravel Eloquent models. Grouping and man...

1,068,478 289
czim/laravel-filter

Filter for Laravel Eloquent queries, with support for modular filter building

75,768 89
clean-solutions/sortable

Package for handling column sorting

50 1