I want to add link_to
with a
<div class="panel-body">
it should be something like this
<%= link_to 'div',{:controller=>'users',:action=>'go'}
but I am not able to find any way.
This is my div:
<div class="panel-body"></div>
<div class="panel-footer back-footer pink">
workers signup
</div>
You can put a div
inside of link_to
:
<%= link_to users_path, :action => 'go' do %>
<div>YOUR CONTENT</div>
<% end %>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With