Source code file: NestedRoutes/app/views/owners/summary.html.erb:
<h2>Summary of Owners and Pets</h2>
<p>Number of Owners: <%= Owners.count %><br />
Number of Pets: <%= Pet.count %></p>
<table>
<tr>
<th>Owner</th>
<th>Number of Pets</th>
<tr>
<% @owners.each do |owner| %>
<tr>
<td><%= owner.name %></td>
<td><%= owner.pets.count %></td>
</tr>
<% end %>
</table>