Download the PHP package tiagomichaelsousa/laravelfilters without Composer
On this page you can find all versions of the php package tiagomichaelsousa/laravelfilters. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tiagomichaelsousa/laravelfilters
More information about tiagomichaelsousa/laravelfilters
Files in tiagomichaelsousa/laravelfilters
Package laravelfilters
Short Description Laravel Filters is a package that allows to filter eloquent models in a clean way.
License MIT
Homepage https://github.com/tiagomichaelsousa/laravelfilters
Informations about the package laravelfilters
Laravel Filters is a package based in a Laracasts video made by JeffreyWay. This package allows to filter eloquent models in a clean and simple way.
Installation
-
Install the package via Composer:
The package will automatically register its service provider.
- Optionally, publish the configuration file if you want to change any defaults:
Usage
Create the filter
This command will create a new filter class in the namespace defined on the configuration file.
Updating your Eloquent Models
Your models should use the Filterable trait, which has two scopes filter()
and resolve()
.
The filter()
method receives the query builder and the instance of the class responsible for the filter methods.
The resolve()
method works like an helper. It verifies if the request has the query string paginate=x
and if its present it return the response with pagination, otherwise it will return the data.
Creating your Filters
When you make the request to an endpoint the QueryFilter
class (that UserFilters
extends from) verifies if there is any method with the name that you sent in the request query string.
The php artisan make:filter <name>
comes with a default search method that you can delete if you want. When you make a request to /api/users?search=Foobar
the QueryFilter
class will call the search method because the key search
is present in both the request and UserFilters
class.
The search method applies the queries to the builder instance. With that said you can combine multiple clauses. For example, if you want the search method to filter the data from the name
and last_name
fields on the db just add the orWhere
clause.
If you want to add more filters, just add a new method to the class, put the logic for the filter and send it trough the request query string.
You can also filter data through eloquent relationships. For example, filter users from a country_code /api/users?country=PT
Updating your Controllers
The filter()
method can be called in every instance of a model that uses the Filterable
Trait. So imagine that you have a model Meeting and this Meeting has many users. You can filter the users from the Meeting this way:
A filter could be instantiated also by providing an associative array:
Change log
Please see the changelog for more information on what has changed recently.
Testing
With test coverage
Contributing
Please see contributing.md for details and a todolist.
Security
If you discover any security related issues, please email the author instead of using the issue tracker.
Credits
- @tiagomichaelsousa
- All Contributors
License
License MIT. Please see the license file for more information.
Code Of Conduct
Please see the code of conduct for more information.
Contributors β¨
Thanks goes to these wonderful people (emoji key):
tiagomichaelsousa π» π π |
Rafael Ferreira π |
Filipe LaΓns π» π π |
Devon Mather π» π |
Gianni Ciccarelli π» π |
This project follows the all-contributors specification. Contributions of any kind welcome!