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 3 years have passed since last update.

Laravelルーティングから起動まで

Posted at

【概要】

1.プロジェクトの作成

2.ルーティング

3.起動方法

1.プロジェクトの作成

$ composer create-project laravel/laravel 名前 --prefer-dist

名前に作成したいファイル名を記載するとその名前でファイルが生成されます。任意のファイルの中にで作成してください。


2.ルーティング

routes/web.php
<?php
Route::get('/' , function(){
   return view('****');
});

1.で作成した際にテンプレートで上記は記載されています。'/'はhttp://localhost:8000/へアクセスするようになっており、"welcom"はviews/welcome.blade.phpのプログラムが反映されます。3.で起動した際にLaravelが出てきます。

公式ではなく直にちゃんとルーティングが反映されているかを確認する方法としてweb.phpに直接viewを反映する方法があります。

routes/web.php
Route::get('hoge' , function(){
  return '<html><body>HOGE<p>HELLO,HOGE
          </body></html>';

上記のようにコーディングすると、
http://localhost:8000/HOGEにアクセスした際に、
”HOGE”と”HELLO,HOGE”が記載されているページを表示できます。

3.起動方法

$ php artisan serve

これで起動ができます。
phpの場合は何も設定していなければ、"localhost:8000"でブラウザに表示できます。

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?