kblais / query-filter
Easily create filters for your Eloquent models.
Installs: 37 127
Dependents: 2
Suggesters: 0
Security: 0
Stars: 23
Watchers: 2
Forks: 3
Open Issues: 1
Requires
- php: ^8.0
- illuminate/database: ^9.33|^10.0|^11.0
- illuminate/http: ^9.33|^10.0|^11.0
- illuminate/support: ^9.33|^10.0|^11.0
- spatie/laravel-package-tools: ^1.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- larastan/larastan: ^2.9
- orchestra/testbench: ^7.0|^8.0|^9.0
- dev-master
- v3.2.0
- v3.1.0
- v3.0.0
- v2.x-dev
- v2.0.2
- v2.0.1
- v2.0.0
- 1.7.0
- v1.6.1
- v1.6.0
- v1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
- dev-allow-laravel-11
- dev-laravel-10-compat
- dev-laravel-9.0-upgrade
- dev-add-github-action
- dev-16-add-laravel-7-support
- dev-prepare-for-laravel-6
- dev-implement-arrayable-contract
- dev-update-readme
- dev-add-php-cs-fixer
- dev-update-travis
This package is auto-updated.
Last update: 2024-11-16 13:38:54 UTC
README
Easily create filters for your Eloquent model.
Based on Jeffray Way's Laracast tutorial.
Installation
You can install the package via composer:
composer require kblais/query-filter
You can publish the config file with:
php artisan vendor:publish --provider="Kblais\QueryFilter\QueryFilterServiceProvider" --tag="query-filter-config"
This is the contents of the published config file:
return [ 'default-filters-source' => null, ];
Usage
A QueryFilter is a class to apply, based on an array or a Request, multiple conditions.
You can call any Eloquent method directly from filter methods.
use Kblais\QueryFilter\QueryFilter; class PostFilter extends QueryFilter { public function title($value) { return $this->where('foo', 'bar'); } public function author($value) { return $this->whereHas('author', function ($builder) use ($value) { $this->where('name', $value); }); } }
To allow a model to use query filters, you have to add the Filterable
trait on your model.
use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Kblais\QueryFilter\Filterable; class Post extends Model { use Filterable; }
You can then use the filter()
scope from anywhere:
// From an array... $filterInput = [ 'title' => 'Les Trois Mousquetaires', ]; $posts = Post::filter(PostFilter::make($filterInput))->get(); // ...Or in a controller action public function index(PostFilter $filter) { // Filter is automatically populated with Request data when injected return Post::filter($filter)->get(); }
If your filter parameters are always placed in an array key (for example filters
), you can define the default-filters-source
config key in the config file, or add a protected string $source = 'filters'
in your QueryFilter.
Frequent issues
Call to an undefined method App\QueryFilters\YourFilter::anEloquentScope().
with PHPStan
To fix this error message, add the following DocBlock to your filter:
/**
* @mixin \App\Models\ModelOfYourScope
*/
Testing
The test suite is composed of 3 tests: PHPCsFixer (coding style), PHPStan (static analysis) and PHPUnit (unit tests).
You can run all these tests running the following command:
composer tests
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
- Follow the PSR-2 Coding Standard. Use PHP-CS-Fixer to apply the conventions.
- Add tests for the features you add and bugs you discover.
Credits
License
The MIT License (MIT). Please see License File for more information.