PHP code example of amrnn / laravel-cursor-paginator
1. Go to this page and download the library: Download amrnn/laravel-cursor-paginator 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/ */
// will return 10 items per page
Post::orderBy('id')->cursorPaginate(10);
// no need to specify date casts here
Post::orderBy('created_at')->cursorPaginate(10);
// must tell a plain query builder about the dates
DB::table('posts')
->orderBy('created_at')
->cursorPaginate(10, ['dates' => ['created_at']]);
Post::select('id', 'created_at')->orderBy('created_at')->cursorPaginate();
// or
Post::orderBy('created_at')->cursorPaginate()
return [
/**
*
* Cursor direction names
*
* these appear in the url query string, change their mappings if you need to.
* for example if you change:
*
* 'before' => 'b'
*
* then your urls might look like:
* http://localhost:8000/b=10 instead of http://localhost:8000/before=10
*/
'directions' => [
'before' => 'before',
'before_i' => 'before_i',
'after' => 'after',
'after_i' => 'after_i',
],
/**
* Whether to encode url query.
*
* If set to true then your urls might look like:
* http://localhost:8000/cursor=eyJhZnRlciI6M30 instead of http://localhost:8000/after=3
*/
'encode_cursor' => false,
/**
* Cursor url query name to use when `encode_cursor` set to is `true`.
*
* for example if you change:
* 'encoded_cursor_name' => 'page-id'
*
* then your urls might look like:
* http://localhost:8000/page-id=eyJhZnRlciI6M30 instead of http://localhost:8000/cursor=eyJhZnRlciI6M30
*/
'encoded_cursor_name' => 'cursor',
/**
* Default number of items per page.
*
* This can be overridden by passing a first argument to the `cursorPaginate()` method.
*/
'per_page' => 10,
];
sh
php artisan vendor:publish --provider="Amrnn\CursorPaginator\PaginatorServiceProvider"
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.