aelfannir/doctrine-query-paginator
Symfony bundle providing Doctrine query pagination with a flexible filter system. Supports property and compound (AND/OR, nested) filters and operator-based comparisons to build result sets from request-driven criteria.
doctrine/dbal or doctrine/orm (e.g., via laravel-doctrine/orm).property, operator), which may need mapping to Laravel’s query builder or Eloquent’s where clauses.where clauses?doctrine/orm (e.g., laravel-doctrine/orm).property: "name", operator: "LIKE" → where('name', 'LIKE', '%search%').paginate()/simplePaginate() usage.composer require doctrine/dbal aelfannir/doctrine-query-paginator
(For ORM: composer require laravel-doctrine/orm.)$filter = new PropertyFilter('name', 'LIKE', '%test%');
$query = DB::table('users')->where($filter->toEloquentCondition());
DoctrineQueryPaginator directly.LIMIT/OFFSET) are optimized to avoid N+1 issues.How can I help you explore Laravel packages today?