Last active
May 15, 2018 03:36
-
-
Save PrimeTimeTran/6b0b226d48318ab38e1d2032767f8893 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
# 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