Skip to content

Instantly share code, notes, and snippets.

View senter-logistics's full-sized avatar

Senter Logistics senter-logistics

  • Senter Logistics
  • Monterrey, Mexico
View GitHub Profile
@senter-logistics
senter-logistics / AppServiceProvider.php
Created October 13, 2020 20:58 — forked from simonhamp/AppServiceProvider.php
A pageable Collection implementation for Laravel
<?php
namespace App\Providers;
use Illuminate\Support\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
class AppServiceProvider extends ServiceProvider
{
public function boot()
@senter-logistics
senter-logistics / paginate.php
Created October 19, 2020 21:33 — forked from wuiler/paginate.php
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