我正在Laravel4中开发一个API,现在当我以JSON格式返回分页信息时,它以这种特定格式返回:{"Photos":{"total":1,"per_page":15,"current_page":1,"last_page":1,"from":1,"to":1,"data":[{"id":3,"moreInfo":"..."}]}}但我希望我的API以这种格式返回信息:{"total":1,"per_page":15,"current_page":1,"last_page":1,"from":1,"to":1,"Photos":[{"id":3,"moreInfo":"..."}]}