theopeneyes / generate-pagination
A Laravel package to generate pagination
dev-main
2021-08-04 12:33 UTC
Requires
This package is auto-updated.
Last update: 2025-07-04 20:18:08 UTC
README
A Laravel package to generate pagination.
Installation
To get started, install require
in your project.
- Via Composer
composer require theopeneyes/generate-pagination
- Via composer.json file
Enter the following in the require
section of your project composer.json
file.
"theopeneyes/generate-pagination": "dev-main",
Run the composer update
to download the package.
composer update
Basic Usage
use TheOpenEyes\GeneratePagination\GeneratePagination; GeneratePagination::generate($responseArr = array(), $limit, $page, $searchCondition, $sortOrder, $searchColumn = array());