Download the PHP package itsmill3rtime/l5-filterable-sortable without Composer
On this page you can find all versions of the php package itsmill3rtime/l5-filterable-sortable. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download itsmill3rtime/l5-filterable-sortable
More information about itsmill3rtime/l5-filterable-sortable
Files in itsmill3rtime/l5-filterable-sortable
Package l5-filterable-sortable
Short Description A trait for filtering and sorting Query Builder results, based on Laracasts/Dedicated-Query-String-Filtering
License MIT
Homepage https://github.com/rafflesargentina/l5-filterable-sortable
Informations about the package l5-filterable-sortable
l5-filterable-sortable
A trait for filtering and sorting Query Builder strings, based on Laracasts/Dedicated-Query-String-Filtering.
Install
Via Composer
Usage
Add FilterableSortableTrait to your Eloquent model so you can make use of filter() and sorter() scopes. Both apply clauses to the Builder intance that you must define as functions in separate classes. So you must add $filters and $sorters properties to your model to set those classes.
Example:
QueryFilters
Create a class that extends QueryFilters and define methods named after each request data you want to use as a chained query filter. You can employ any logic inside functions, as long as they return a Builder instance.
Example:
You can also access the class method getAppliedFilters() statically, to get an array of the filters applied from request.
QuerySorters
Create a class that extends QuerySorters, and define public methods named after each request data you want to use as a chained query sorter. You can employ any logic inside functions, as long as they return a Builder instance. Default order and default orderBy must be set through $defaultOrder and $defaultOrderBy static properties. Optionally you can define order and orderBy keys through $orderKey and $orderByKey static properties.
Example:
Also you can access these static class methods to get sorter class protected data: getOrderKey(), getOrderByKey(), getDefaultOrder(), getDefaultOrderBy(). Use getAppliedSorters() to get applied sorters from request. Or listOrderByKeys() to populate a dropdown selector.
You can get filtered and sortered records from your model from controller or anywhere you want like this:
That's it :)
Testing
Contributing
Please see CONDUCT for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Mario Patronelli
- All Contributors
License
The MIT License (MIT). Please see License File for more information.