PHP code example of aloware / laravel-cursor-pagination

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

    

aloware / laravel-cursor-pagination example snippets


public function index()
{
    $users = DB::table('users')->cursorPaginate();
    return $users;
}

$users = User::cursorPaginate(15);

$users = User::where('votes', '>', 100)->cursorPaginate(15);

$users = User::orderBy('id', 'desc')->cursorPaginate(15);

// Will use Booking's primaryKey
Bookings::cursorPaginate(10);

// Will use hardcoded 'id'
DB::table('bookings')->cursorPaginate(10);

// Will use 'created_by'
Bookings::orderBy('created_by', 'asc')
    ->cursorPaginate(10);

// Will use id, ignoring everything else.
Bookings::cursorPaginate(10, ['*'], 'cursor', 'id');