Skip to content

Instantly share code, notes, and snippets.

@alejandrofloresm
Created June 23, 2017 17:03
Show Gist options
  • Save alejandrofloresm/a3b85963ea4491078aeebd913cb07bed to your computer and use it in GitHub Desktop.
Save alejandrofloresm/a3b85963ea4491078aeebd913cb07bed to your computer and use it in GitHub Desktop.
Laravel Resources
+----------------------------------------+----------------------+---------+----------------+
| Actions Handled By Resource Controller | | | |
+----------------------------------------+----------------------+---------+----------------+
| Verb | URI | Action | Route Name |
| GET | /photos | index | photos.index |
| GET | /photos/create | create | photos.create |
| POST | /photos | store | photos.store |
| GET | /photos/{photo} | show | photos.show |
| GET | /photos/{photo}/edit | edit | photos.edit |
| PUT/PATCH | /photos/{photo} | update | photos.update |
| DELETE | /photos/{photo} | destroy | photos.destroy |
+----------------------------------------+----------------------+---------+----------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment