I'm starting with Rails, and I'm not able to create a link to delete a "post" from the site.
Follow the links new
and edit
p.btn = link_to "Editar informações", edit_property_path(@property) if current_user == @property.user
p.btn = link_to "Editar imagens", new_property_media_content_path(@property) if current_user == @property.user
p.btn = link_to "Excluir
", property_path(@property) if current_user == @property.user, :confirm => 'Are you sure?', :method => :delete
Show error:
syntax error, unexpected ',', expecting ')'