planetadeleste / oc-pagination-with-havings
Makes it possible to use pagination with havings in queries.
1.0.1
2020-11-13 07:48 UTC
Requires
- php: >=7.0
- october/october: ~1.0
README
Based on Laravel Pagination with Havings package
This package makes it possible to use Laravel's pagination with queries which are using havings. Without it you probably get "Column not found" MySQL errors. For more information see:
Installation
composer require planetadeleste/oc-pagination-with-havings
Usage
Just use the trait on the model.
Example
use PlanetaDelEste\PaginationWithHavings\PaginationWithHavings;
class MyModel extends \Model
{
use PaginationWithHavings;
...
}
Ideas, bugs or suggestions?
Please create a issue or a pull request.
Thanks
To Roy Duineveld for write the original version for Laravel.