Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 788 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 788 Bytes

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]