前提・実現したいこと
PHPフレームワーク laravel入門(秀和システム)を用いて以下のコードを書いたところ、エラーが出てしまいます。何が原因でしょうか?
回答を頂けますと幸いです。
発生している問題・エラーメッセージ
components.message was not found.
該当のソースコード
index.blade.php
php
1@extends('layouts.helloapp') 2 3@section('title', 'Index') 4 5@section('menubar') 6 @parent 7 インデックスページ 8@endsection 9 10@section('content') 11 <p>ここが本文のコンテンツです。</p> 12 <p>必要なだけ記述できます。</p> 13 14 @include('components.message',['msg_title'=>'OK','msg_content'=>'サブビューです。']) 15 16@endsection 17 18@section('footer') 19copyright 2020 tuyano. 20@endsection
該当のソースコード
message.blade.php
php
1<style> 2.message {border:double 4px #ccc; margin:10px; padding:10px; 3 background-color: #fafafa;} 4.msg_title {margin:10px 20px; color:#999; 5 font-size:16pt; font-weight:bold;} 6.msg_content {margin:10px 20px; color:#aaa; 7 font-size:12pt;} 8</style> 9<div class="message"> 10 <p class="msg_title">{{$msg_title}}</p> 11 <p class="msg_content">{{$msg_content}}</p> 12</div>
回答1件
あなたの回答
tips
プレビュー