Skip to content

Instantly share code, notes, and snippets.

@mwangaben
Forked from vluzrmos/paginate.php
Created May 24, 2021 15:56
Show Gist options
  • Save mwangaben/9c069ed78fdee79076f739a8ef161000 to your computer and use it in GitHub Desktop.
Save mwangaben/9c069ed78fdee79076f739a8ef161000 to your computer and use it in GitHub Desktop.
Laravel Paginate Collection or Array
<?php
/**
* Gera a paginação dos itens de um array ou collection.
*
* @param array|Collection $items
* @param int $perPage
* @param int $page
* @param array $options
*
* @return LengthAwarePaginator
*/
public function paginate($items, $perPage = 15, $page = null, $options = [])
{
$page = $page ?: (Paginator::resolveCurrentPage() ?: 1);
$items = $items instanceof Collection ? $items : Collection::make($items);
return new LengthAwarePaginator($items->forPage($page, $perPage), $items->count(), $perPage, $page, $options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment