Laravel Purity is an elegant and yet simple filtering and sorting package for Laravel,
designed to simplify complex data filtering and sorting logic for eloquent queries.
By simply adding filter()
to your Eloquent query,
you can add the ability for frontend users to apply filters based on URL query string parameters like a breeze.
Here is a basic usage example to clarify Purity's use case.
Add filter()
to your query.
$posts = Post::filter()->get();
That's it! Now you can filter your posts by adding query string parameters to the URL.
GET /api/posts?filters[title][$contains]=Purity
read more at official documentations
https://abbasudo.github.io/laravel-purity/
Laravel Purity is Licensed under The MIT License (MIT). Please see License File for more information.
If you've found a bug regarding security, please mail amkhzomi@gmail.com instead of using the issue tracker.