search

Home  >  Q&A  >  body text

laravel transformer for paginated data

Need to transform the paging data, but I don’t know how to solve it. Here is my code

$devis=DB::table('devis')->orderBy('category_id','DESC')->paginate(10);
        return $this->respondWithCollection($devis,new DevisTransformer());

Return 500
Error message:"Type error: Argument 1 passed to AppHttpControllersApiController::respondWithCollection() must be an instance of IlluminateSupportCollection, instance of IlluminatePaginationLengthAwarePaginator given,

PHP中文网PHP中文网2804 days ago480

reply all(1)I'll reply

  • 大家讲道理

    大家讲道理2017-05-16 16:52:46

    Use $this->response->paginator()

    reply
    0
  • Cancelreply