Laravel刀片:模板无法渲染

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel刀片:模板无法渲染相关的知识,希望对你有一定的参考价值。

这个工作正常,可以在视图文件夹的我的页面文件夹中找到

@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后,这个工作正常。

虽然这个没有在视图文件夹中的post文件夹中找到

@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
答案

而不是@include使用@extends

同时尝试使用<p></p>标签关闭<small>标签

</small>

以上是关于Laravel刀片:模板无法渲染的主要内容,如果未能解决你的问题,请参考以下文章

laravel5.1 - 刀片模板不渲染

Laravel 4刀片模板导致FatalErrorException?

Vue 组件渲染而不是 Laravel Blade 模板

Laravel 刀片上的 Vuejs

Laravel 无法扩展默认刀片模板

如何在刀片模板的 foreach 循环中访问 laravel 集合?