Please enable JavaScript.
Coggle requires JavaScript to display documents.
RESTFULL (name (url (verb (get))), CREATE (/blogs (POST (Add new post -…
RESTFULL
name
url
verb
get
CREATE
/blogs
POST
Add new post - Action
INDEX
/blogs
GET
Display list of all blog
DELETE
/blogs/:id
DELETE
Delete an article, and redirect somewhere
EDIT
/blogs/:id/edit
GET
Display form to edit the article
NEW
/blogs/new
GET
Display form to create new article
SHOW
/blogs/:id
GET
Show a single full article
UPDATE
/blogs/:id
PUT
Update the article and redirect somewhere
What ???
A mapping between HTTP route & CRUD