Skip to content

Commit 9b9658d

Browse files
lisgroupgitee-org
authored andcommitted
update laravel/readme/1. 2018-11-16-RESTFull API 风格开发.md.
1 parent 99c2ab7 commit 9b9658d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

laravel/readme/1. 2018-11-16-RESTFull API 风格开发.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ Route::resource('crontask', 'Api\CronTaskController');
3030

3131
方法| 路径| 动作| 路由名称
3232
---|---|---|---
33-
GET| /post| index| post.index
34-
GET| /post/create| create| post.create
35-
POST| /post| store| post.store
36-
GET| /post/{post}| show| post.show
37-
GET| /post/{post}/edit| edit| post.edit
38-
PUT/PATCH| /post/{post}| update| post.update
39-
DELETE| /post/{post}| destroy| post.destroy
33+
GET| /crontask| index| crontask.index
34+
GET| /crontask/create| create| crontask.create
35+
POST| /crontask| store| crontask.store
36+
GET| /crontask/{post}| show| crontask.show
37+
GET| /crontask/{post}/edit| edit| crontask.edit
38+
PUT/PATCH| /crontask/{post}| update| crontask.update
39+
DELETE| /crontask/{post}| destroy| crontask.destroy
4040

4141
### 5. 表单验证处理- 创建表单请求
4242

0 commit comments

Comments
 (0)