Skip to content

Instantly share code, notes, and snippets.

@PrimeTimeTran
Last active May 15, 2018 03:36
Show Gist options
  • Save PrimeTimeTran/6b0b226d48318ab38e1d2032767f8893 to your computer and use it in GitHub Desktop.
Save PrimeTimeTran/6b0b226d48318ab38e1d2032767f8893 to your computer and use it in GitHub Desktop.
# Comment Form
<%= form_for [@post, Comment.new] do |f| %>
<%= f.text_field :body, placeholder: "Comment", class: "form-control", required: true, size: "30x10" %>
<%= f.submit %>
<% end %>
# Post Controller
def show
@post = Post.find(params[:id])
end
# Routes.rb
resources :posts do
resources :comments
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment