PHP code example of heseya / pagination

1. Go to this page and download the library: Download heseya/pagination library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

heseya / pagination example snippets


protected $middleware = [
    ...
    Heseya\Pagination\Http\Middleware\Pagination::class,
];

Route::get(...)->middleware(Pagination::class);

public function index()
{
    return Product::paginate(Config::get('pagination.per_page'));
}

php artisan vendor:publish --tag=pagination