Laravel #3:テンプレートを使う

※ 参考:PHPフレームワーク「Laravel」におけるビューの使い方を理解しよう:CodeZine(コードジン)
テンプレートファイルを resources/views フォルダに作成する。
ファイルの拡張子は "blade.php"

例:resources/views/hello.blade.php
<!DOCTYPE html>
<html lang="jp">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h1>hello</h1>
</body>
</html>
routes/web.php から呼び出す際は view('テンプレート名') で良い。
Route::get('/hello', function() {
    return view('hello');
});

0 件のコメント:

その他の記事