Created
April 26, 2014 07:39
-
-
Save axilaris/11314196 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| in controller | |
| def index | |
| @customers = Customer.all | |
| end | |
| in erb | |
| this doesnt work: | |
| <% raw @customers.count %> | |
| <% raw @customers.first.company %> | |
| this works: | |
| <% @customers.each do |customer| %> | |
| <tr> | |
| <td><%= customer.company %></td> | |
| </tr> | |
| <% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment