Laravel布局不起作用

时间:2016-11-03 12:33:14

标签: php laravel netbeans-8

我正在尝试一些非常简单的事情并且无法让它发挥作用。 我有2页。 admin.blade.php和left.blade.php 我正在尝试使用管理页面作为母版页。并包括来自left.blade.php的日期

管理页面仅打印"测试"结果并没有包含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');
});

2 个答案:

答案 0 :(得分:3)

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

@include('left')

如果您的主要内容位于left.blade.php,并且您仅使用admin.blade.php作为布局,则更改路线:

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

答案 1 :(得分:1)

您想要调用内部页面的视图,而不是主页面,因为内部页面扩展了母版页:

return view('left');