mazanax/paginator

Simple pagination library for you site

v1.0.3 2018-01-12 10:11 UTC

This package is auto-updated.

Last update: 2024-04-17 09:18:13 UTC


README

Minimum PHP Version Latest Stable Version Build Status codecov

Paginator

Simple pagination library for your site

Installation

composer require mazanax/paginator

Usage

<?php

$pagination = new Pagination(['separator' => '|', 'on_page' => 5, 'section_size' => 5]);
$pagination->getPages(4, 100); // will returns [1, 2, 3, 4, 5, '|', 20]