前提・実現したいこと
laravelで@includeによるテンプレートの呼び出しを行おうとしたら
下記のように「@include("Common.header")」が表示されます。
どうすればテンプレートが呼ばれるようになりますか?
@include("Common.header") 天気予報 google天気 yahoo天気 総合予報 @include("Common.footer")
発生している問題・エラーメッセージ
エラーメッセージは出ていない
該当のソースコード
index.php
<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Laravel</title> <!-- Fonts --> <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet"> <!-- Styles --> <style> </style> <style> body { font-family: 'Nunito'; } </style> </head> <body class="antialiased"> @include("Common.header") <h1>天気予報</h1> <div class="google_weathers"> <h2>google天気</h2> </div> <div class="yahoo_weathers"> <h2>yahoo天気</h2> </div> <div class="all_weathers"> <h2>総合予報</h2> </div> @include("Common.footer") </body> </html>
header.php
<header> header </header>
footer.php
<footer> footer </footer>
補足情報(FW/ツールのバージョンなど)
【ファイル構成】
/resources/views/Common/footer.php
/resources/views/Common/header.php
/resources/views/index.php
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/15 15:03
2021/03/15 15:04