LaravelでMVCを利用してとりあえず表示させてみる
【概要】
1.ルーティングの設定
2.コントローラーの設定
3.ビューの設定
4.開発環境
1.ルーティングの設定
Route::get('hoge', 'App\Http\Controllers\HogeController@index' );
ここで、Route::get('hoge', 'HogeController@index' );とすると、
”Target class [HogeController] does not exist”となってしまうので、最初からパスをコーディングしました。
2.コントローラーの設定
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HogeController extends Controller
{
public function index() #---❶
{
return view('hoge.index'); #---❷
}
}
❶:ここでindexアクションを定義しています。
❷:hogeフォルダのindex.phpファイルに返り値としてレンダリングするようにしています。
3.ビューの設定
<html>
<head>
<title>Hoge/Index</title>
</head>
<body>
<h1>Index</h1>
<p>HOGEHOGE</p>
</body>
</html>
簡単なHTML文しか書いていません。
「blade」テンプレートエンジンはまた後日説明します。
1~3を通じて下記が表記できます。
http://localhost:8000/hoge
4.開発環境
PHP 7.4.10
Laravel 8.9.0
Apache 2.4.41
Author And Source
この問題について(LaravelでMVCを利用してとりあえず表示させてみる), 我々は、より多くの情報をここで見つけました https://qiita.com/taka_no_okapi/items/d2c954b057b663eb9836著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .