The RESTful Methods
Misc
Are a way of thinking about and organizing web applications.
Method | Description | HTTP Verb | |
---|---|---|---|
Index | Lists out all of what exists of a defined resource | Read | GET |
Show | Displays specific information of a specific resource | Read | GET |
Create | Displays a way of making a new resource -typically some kind of form | Read | GET |
Store | Saves a newly created resource to a storage facility | Create | POST |
Edit | Displays a way of changing a specific existing resource | Read | GET |
Update | Saves changes to an existing resource within a storage facility | Update | PATCH or PUT |
Destroy (delete) | Removes an existing resource within a storage facility | Delete | DELETE |
###
Writer: Levi Sanchez, tkd.lsanchez@gmail.com