编程语言
首页 > 编程语言> > php-Laravel布局不起作用

php-Laravel布局不起作用

作者:互联网

我正在尝试一些非常简单的操作,无法正常工作.
我有2页. admin.blade.php和left.blade.php
我正在尝试使用管理页面作为母版页面.并包括left.blade.php中的日期

管理页面仅打印“ test”作为结果,而left.admin.php中不包含任何内容.
我看不出有什么问题.提前致谢

文件结构是

-- resources
   --views
     *admin.blade.php
     *left.blade.php

left.blade.php

@extends('admin')

@section('content')
   baran
@stop

admin.blade.php

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
    <head>
        <meta charset="UTF-8">
    <title> @yield('title')</title>
</head>
<body>
    <?php
    // put your code here
    ?>

    @yield('content')

    test
<div id='footer'>
    @yield('footer')
</div>
</body>
</html>

web.php中的route命令是

Route::get('/admin', function () {
    return view('admin');
});

解决方法:

如果要包括left.blade.php中的日期,则应在admin.blade.php中使用@include()指令:

@include('left')

如果您的主要内容在left.blade.php中,并且您仅使用admin.blade.php作为布局,请更改路由:

Route::get('/admin', function () {
    return view('left');
});

标签:netbeans-8,laravel,php
来源: https://codeday.me/bug/20191026/1937396.html