PHP code example of lucianobosco / laravel-cursor-paginator

1. Go to this page and download the library: Download lucianobosco/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/ */

    

lucianobosco / laravel-cursor-paginator example snippets


// config/app.php

'providers' => [
    // ...
    Amrnn\CursorPaginator\PaginatorServiceProvider::class,
];

Route::get('/posts', function() {
    return Post::select('id')->orderBy('id', 'desc')->myCursorPaginate(5);
})

// will return 10 items per page
Post::orderBy('id')->myCursorPaginate(10);

// no need to specify date casts here
Post::orderBy('created_at')->myCursorPaginate(10);

// must tell a plain query builder about the dates
DB::table('posts')
    ->orderBy('created_at')
    ->myCursorPaginate(10, ['dates' => ['created_at']]);

Post::orderBy('created_at')->orderBy('id')->myCursorPaginate();

Post::orderBy('created_at', 'desc')->orderBy('id', 'desc'')->myCursorPaginate();

Post::select('id')->orderBy('created_at')->myCursorPaginate();

Post::select('id', 'created_at')->orderBy('created_at')->myCursorPaginate();

// or

Post::orderBy('created_at')->myCursorPaginate()


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 `myCursorPaginate()` method.
     */
    'per_page' => 10,
];
sh
php artisan vendor:publish --provider="Amrnn\CursorPaginator\PaginatorServiceProvider"