## Basic CRUD
* CRUD: Create, Edit, Update, Delete
* `create`
* `new`: displays form
* `create`: processes form data
* `read`
* `index`: displays all objects
* `show`: displays one object
* `update`
* `edit`: renders form to modify the object
* `update`: processes the modifications and saves the new changes
* `delete`
* `delete`: display the delete form
* `destroy`: processes the delete form