I have an api and I want to send some info to my clients. I'm using resource collection to do this.
return response()->json([
'data' => ProductResource::collection(Product::orderBy('id', 'DESC')->paginate(8)),
'catdata' => CategoryResource::collection(Category::get()),
'status' => "200"
]);
All things work but paginate meta data doesn't work. It doesnt send paginate data.