LoginSignup
3
3

More than 5 years have passed since last update.

【メモ】Laravelのリソースコントローラーの各メソッドの役割まとめ

Posted at
HTTPメソッド パス メソッド 役割
GET /posts index リソースの一覧表示
GET /posts/create create リソースを新規作成するためのフォームを表示
POST /posts store リソースを新規作成
GET /posts/{post} show 指定されたリソースの詳細情報を表示
GET /posts/{post}/edit edit 指定されたリソースの編集フォームを表示
PUT/PATCH /posts/{post} update 指定されたリソースを更新
DELETE /posts/{post} delete 指定されたリソースを削除

(参考)
http://www.dn-web64.com/archives/web/laravel_resourcefull-controller/

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3