0
1

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 1 year has passed since last update.

ルーティングについて

Posted at

#ルーティングとは
あるアドレスにアクセスをした際、どの処理を行うのかを管理しているのがルーティングです。
laravelのroutesのweb.phpにこのルーティングのコードを記載していきます。

web.php
Route::get('/new', 'BookController@new')

例えば、このようなルーティングがあったとします。
https://~newというアドレスにアクセスをした場合、BookController内で定義されているnew(@以降の記述)というメソッドの処理が行われます。

つまり『〇〇のアドレスにアクセスをしたらば□□という処理が行われる』という事です。

#####書き方
route::get(アドレス名、コントローラー名@メソッド名)

Web上で展開されているページはすべてこのweb.phpでルートが記載されております。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?