gpt4 book ai didi

php - Laravel 布局不起作用

转载 作者:可可西里 更新时间:2023-11-01 00:56:42 25 4
gpt4 key购买 nike

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

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

文件结构为

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

左.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::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');
});

关于php - Laravel 布局不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40401616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com