How to Create Pagination in Laravel REST API?

Updated: Mar 25, 2023

If you are building a RESTful API using Laravel, you might need to implement pagination to improve the user experience and optimize server resources. Pagination divides a large set of data into smaller, more manageable chunks, making it easier to navigate and reducing the load on your API. In this article, we'll cover how to create pagination in Laravel REST API using the built-in Paginator class.

Understanding Pagination in Laravel

Pagination is a common feature in web applications that allows users to browse large amounts of data without overwhelming the system. In Laravel, pagination is implemented using the Paginator class, which can be used to divide a dataset into smaller pages.

The Paginator class provides several features, including:

Setting up the REST API

Before we dive into pagination, let's set up a basic RESTful API in Laravel. We'll assume that you have already set up Laravel and have a basic understanding of RESTful API design.

To create a RESTful API in Laravel, we'll need to define routes, controllers, and models. For example, let's say we want to create an API endpoint that retrieves a list of users. We'll create a UserController with a getUsers method that returns a JSON response:

class UserController extends Controller
{
    public function getUsers()
    {
        $users = User::all();
    <span class="hljs-keyword">return</span> response()-&gt;json($users);
}

}

Next, we'll define a route that maps to the getUsers method:

Route::get('/users', 'UserController@getUsers');

With these two components in place, we can make a GET request to /users and receive a JSON response containing all the users in our database.

Configuring Pagination in Laravel

Now that we have our basic API set up, let's configure pagination. In Laravel, pagination can be configured in the AppServiceProvider class using the Paginator::defaultView() and Paginator::defaultSimpleView() methods.

For example, let's say we want to use Bootstrap styles for our pagination links. We can set the default view and simple view to the appropriate Bootstrap templates:

use Illuminate\Pagination\Paginator;

public function boot() { Paginator::defaultView('vendor.pagination.bootstrap-4'); Paginator::defaultSimpleView('vendor.pagination.simple-bootstrap-4'); }

Retrieving Paginated Data

With pagination configured, we can now modify our getUsers method to return paginated data. We'll use the paginate() method to retrieve a specified number of records per page:

public function getUsers()
{
$users = User::paginate(10);

<span class="hljs-keyword">return</span> response()-&gt;json($users);

}

This will return the first 10 users in our database as well as links to the next page of results.

Customizing Pagination in Laravel

The Paginator class provides several methods that allow you to customize the pagination links and behavior. For example, you can use the onEachSide() method to specify the number of links to display on each side of the current page link:

$users = User::paginate(10)->onEachSide(2);

This will display two links to the left and two links to the right of the current page link.

You can also customize the text of the pagination links using the render() method. For example, to use custom text for the "Previous" and "Next" links, we can pass an array of options to the render() method:

$users->render([
'prev_text' => 'Previous Page',
'next_text' => 'Next Page',
]);

This will display "Previous Page" and "Next Page" instead of the default "Previous" and "Next" text.

Best Practices for Pagination in Laravel

When implementing pagination in your Laravel REST API, there are some best practices to keep in mind:

Handling Errors in Pagination

Like any feature in your API, pagination can fail for a variety of reasons. When this happens, it's important to provide clear and informative error messages to help users diagnose the issue.

For example, if a user requests a page that doesn't exist, we can return a 404 Not Found HTTP response:

public function getUsers(Request $request)
{
$users = User::paginate(10);

<span class="hljs-keyword">if</span> ($request-&gt;page &gt; $users-&gt;lastPage()) {
    abort(<span class="hljs-number">404</span>, <span class="hljs-string">'Page not found'</span>);
}

<span class="hljs-keyword">return</span> response()-&gt;json($users);

}

This will return a 404 error with the message "Page not found" if the requested page is greater than the last page in the dataset.

8. Testing Pagination in Laravel

When testing your Laravel REST API, it's important to include tests that verify the pagination functionality. Laravel provides several tools for testing pagination, including the assertPagination() method:

public function testPagination()
{
$response = $this->get('/users?page=2');

$response-&gt;assertStatus(<span class="hljs-number">200</span>);
$response-&gt;assertJsonCount(<span class="hljs-number">10</span>, <span class="hljs-string">'data'</span>);
$response-&gt;assertJsonStructure([
    <span class="hljs-string">'data'</span>,
    <span class="hljs-string">'links'</span> =&gt; [
        <span class="hljs-string">'first'</span>,
        <span class="hljs-string">'last'</span>,
        <span class="hljs-string">'prev'</span>,
        <span class="hljs-string">'next'</span>,
    ],
    <span class="hljs-string">'meta'</span> =&gt; [
        <span class="hljs-string">'current_page'</span>,
        <span class="hljs-string">'from'</span>,
        <span class="hljs-string">'last_page'</span>,
        <span class="hljs-string">'links'</span>,
        <span class="hljs-string">'path'</span>,
        <span class="hljs-string">'per_page'</span>,
        <span class="hljs-string">'to'</span>,
        <span class="hljs-string">'total'</span>,
    ],
]);
$response-&gt;assertPagination();

}

This test verifies that the API returns a 200 OK response, contains 10 records in the "data" field, and includes the expected pagination links and metadata.

9. Conclusion

In this article, we covered how to create pagination in Laravel REST API using the built-in Paginator class. We explored the basics of pagination, how to configure it in Laravel, and how to retrieve and customize paginated data. We also discussed best practices for pagination, how to handle errors, and how to test your pagination functionality. With this knowledge, you can create scalable and efficient RESTful APIs that meet the needs of your users.