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?
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
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']),
]);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community