theopeneyes / generate-pagination
A Laravel package to generate pagination
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/theopeneyes/generate-pagination
Requires
This package is auto-updated.
Last update: 2025-12-04 21:11:58 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());