📜  laravel 资源类型 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:36.195000             🧑  作者: Mango

代码示例1
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