当前位置:  开发笔记 > 编程语言 > 正文

Laravel Blade语法@yeild('content')无效

如何解决《LaravelBlade语法@yeild('content')无效》经验,为你挑选了1个好方法。

我知道这是一个非常基本和愚蠢的问题,但我正在尝试从最近2天,但没有弄清楚我的错误是我在哪里搜索,但仍然没有弄明白.我是laravel的新手,并从我正在使用刀片语法的教程中学习.

Web.php

Route::get('about','makeController@FunFun');

makeController.php

 class makeController extends Controller
{
public function FunFun(){
    $first = 'Muhammad';
    $last = 'Uzair Warsi';
    return view('pages.app',compact('first'));
}}

app.blade.php

@extends('pages.funview')

@section('content')

my name is : {{$first}}

@stop

funview.blade.php





HTML Tutorial


this is from funview page

@yeild('content')

问题是localhost加载所有标题标题并打印@yeild('content')而不是刀片部分的内容.



1> Robert..:

语法是:

@yield('content')

@yeild

有关Blade和语法检查的更多信息:https://laravel.com/docs/5.3/blade#template-inheritance

推荐阅读
小白也坚强_177
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有