Laravel Packages

Advanced Eloquent Model Filters

Published
Advanced Eloquent Model Filters image

Advanced Laravel Model Filters is a package that gives you fine-grained control and reusable classes you can use to filter Eloquent models. The readme has an example where perhaps you'd like to filter by the name column:

$filters = EloquentFilters::make([
new NameFilter($request->name)
]);
 
$products = Product::filter($filters)->get();

The NameFilter class is a reusable filter you can reuse wherever you need to filter by name:

use Pricecurrent\LaravelEloquentFilters\AbstractEloquentFilter;
use Illuminate\Database\Eloquent\Builder;
 
class NameFilter extends AbstractEloquentFilter
{
protected $name;
 
public function __construct($name)
{
$this->name = $name;
}
 
public function apply(Builder $builder): Builder
{
return $query->where('name', 'like', "{$this->name}%");
}
}

The NameFilter is now reusable, as shown in the following example being used in tandem with the User model. This code example also demonstrates how you can chain methods on filter() as if it was an Eloquent builder instance:

$filters = EloquentFilters::make([
new NameFilter($request->user_name)
]);
 
$products = User::query()
->filter($filters)
->limit(10)
->latest()
->get();

You can learn more about this package, get full installation instructions, and view the source code on GitHub.


This package was submitted to our Laravel News Links section. Links is a place the community can post packages and tutorials around the Laravel ecosystem. Follow along on Twitter @LaravelLinks

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

serpapi logo
SerpApi

The Web Search API for Your LLM and AI Applications

Visit SerpApi

The latest

View all →
Laravel Auditor Audits Your App With Your Own AI Agent image

Laravel Auditor Audits Your App With Your Own AI Agent

Read article
A simple form builder that stays out of your way image

A simple form builder that stays out of your way

Read article
Laravel AI: Trace Agent Runs With Lifecycle Events image

Laravel AI: Trace Agent Runs With Lifecycle Events

Read article
Laravel AI: Get Raw HTTP Responses and Rate Limits image

Laravel AI: Get Raw HTTP Responses and Rate Limits

Read article
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article