这个工作正常,可以在视图文件夹
的页面文件夹中找到@extends('layouts.app')
@section('content')
<h2>This is an awesome application. My about page.</h2>
<p>It is very awesome that I am coding it with laravel</p>
@endsection
我不得不使用@include而不是@extend。在指出使用@include。
后,这个工作正常虽然在视图文件夹
中的帖子文件夹中找不到这个@include('layouts.app')
@section('content')
<a href="/posts" class="btn btn-default">Go Back</a>
<h1>{{ $post->title}}</h1>
<p>{{ $post->body}}</p>
<small>{{ $post->created_at }}</small>
@endsection
答案 0 :(得分:1)
而不是@include
使用@extends
同时尝试使用<p>
和</p>
标记关闭<small>
代码{/ 1}}
</small>