0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Laravel 6.x Route::resource で追加されるルーティングとポリシーのメソッドとの対応をまとめてみた

Posted at

はじめに

この記事はプログラミングをはじめたばかりの素人が、メモするのに利用しています。
内容には誤りがあるかもしれません。

Route::resource( 'URI', 'コントローラ名' );

ルーティングをひとまとめにしたメソッド。
引数1 で割り当てるアドレスを指定する。
引数2 でそれによって呼び出される処理(コントローラー)を指定する。

追加されるルーティングとポリシーとの対応

ルーティング 内容 ポリシーのメソッドとの対応
index 一覧表示 viewAny
create 登録画面表示 create
store 登録処理 create
show 個別表示 view
edit 更新画面表示 update
update 更新処理 update
destroy 削除処理 destroy
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?