I'm looking to organize each data-record in an object that contains two other objects structured like this:
data
Object { abbData={...}, invoiceData={...}}
abbData
Object { service="24", conn_fee="0", month_fee="249", more...}
invoiceData
Object { invoice_fee="0", invoice_type="1", invoice_mail="<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="8be0e3eae5ecbdbff8fdcbe3e4ffe6eae2e7a5e8e4e6">[email protected]</a>", more...}
Within the 'data' object, there are two sub-objects - abbData and invoiceData. How can I retrieve and display the records of abbData and invoiceData using ng-repeat?