CRUD Application: Part 2
Learn to add the create and read functionality to our application and how to navigate between different views.
We'll cover the following
So far, your app opens the index.html.erb
view for you and displays all the pets in our record as clickable links.
Next, we want to do the following:
- Edit
index.html.erb
to display a link to create a new pet. - Edit
new.html.erb
to display web forms to set attributes for the new pet. - Create a
create
method in yourapp/controllers/pets_controller.rb
file to handle the creation of a new pet. - Edit
show.html.erb
to display details of a pet when you click it.
Get hands-on with 1400+ tech skills courses.