Support the ongoing development of Laravel.io →
posted 9 years ago
Architecture

Hi all,

I want to paginate my json output of an API I wrote. Therefore I use the pagination helpers of laravel.

the index method looks like this:

public function index()
{
    $limit = Input::get('limit') ? : 10;
    $incidents = Incident::paginate($limit);

    if( ! $incidents) {
        return Response::json([
            'error' => [
                'message' => 'There are no incidents in the database.',
                'code' => 100
            ]
        ], 404);
    } else {
        return $this->respondWithPagination($incidents, [
            'data' => $this->incidentTransformer->transformCollection($incidents->toArray()),
        ]);
    }
}

And in a separate class APICONTROLLER I have the corresponding method:

public function respond($data, $headers = []) { return Response::json($data, $this->getStatusCode(), $headers); }

public function respondWithPagination(Paginator $incidents, $data)
{
    return $this->respond([
        $data = array_merge($data, [
            'paginator' => [
                'total_count'  => $incidents->getTotal(),
                'total_pages'  => ceil($incidents->getTotal() / $incidents->getPerPage()),
                'current_page' => $incidents->getCurrentPage(),
                'limit'        => $incidents->getPerPage()
            ]
        ])
    ]);

    return $this->respond($data);
}

When I dump the output, I see that there are some results, but then the request crashed with the following error:

ErrorException in IncidentTransformer.php line 10:
Undefined index: incidentReference

This is the IncidentTransformer method:

class IncidentTransformer extends Transformer {
    public function transform($incident) {
        return [
            'incidentReference' => $incident['incidentReference'],
            'latitude' => $incident['latitude'],
            'longitude' => $incident['longitude'],
            'archived' => (boolean) $incident['incidentArchived']
        ];
    }
}

I would guess, that he tries to search for an item that is not available? When I remove all the pagination in the index method, everything is working properly. What did I do wrong?

Last updated 2 years ago.
0

Did you ever get a response?

0

remove all the lines from your returned array and re-add one by one until the code breaks. that line has the bug. this is not laravel just basic php

Last updated 9 years ago.
0

I think that when you use pagination, after you transform toArray() , your data is under the "data" key.. so..

return $this->respondWithPagination($incidents, [
            'data' => $this->incidentTransformer->transformCollection($incidents->toArray()['data']),
        ]);
Last updated 9 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

sesc360 sesc360 Joined 16 Mar 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.