PHP code example of lioneagle / lioneagle-paginator

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

    

lioneagle / lioneagle-paginator example snippets


class UserController extends Controller
{
    public function index()
    {
        $users = User::paginator();

        return UserResource($users);
    }
}
bash
php artisan vendor:publish --provider="Lioneagle\LioneaglePaginator\LioneaglePaginatorServiceProvider" --tag="lioneagle-config"