Laravel paginate resources won't add meta
问题 I have resources data returning in JSON. When I try to get my data with paginate it is not included meta data. Based on documentation my data supposed to be included meta like: "meta":{ "current_page": 1, "from": 1, "last_page": 1, "path": "http://example.com/pagination", "per_page": 15, "to": 10, "total": 10 } but my data is returning like this: Code controller public function index() { $products = ProductFrontResource::collection(Product::orderby('id', 'desc')->with(['photos', 'seo', 'tags'