As far as I can tell I have my code correct (at least it seems to be working), but for some reason I continue to receive the error message “In the view, did you display the tag’s title?”. Any help would be greatly appreciated.
Here is the code I’ve inserted into app/views/tags/show.html.erb
<% @destinations.each do |d| %>
<div class="card col-xs-4">
<%= image_tag d.image %>
<h2><%= d.name %> </h2>
<p><%= d.description %></p>
</div>
<% end %>