gpt4 book ai didi

php - laravel @include 不工作

转载 作者:行者123 更新时间:2023-12-04 01:42:28 24 4
gpt4 key购买 nike

我正在尝试使用 Blade 语法在我的用户页面中包含文件

@include('header')

@yield('content')

@include('footer')

/image/7Ulsz.png

这是 web.php
Route::get('/', function () {
return view('layouts.user');
});

我收到这个错误

(1/1) InvalidArgumentException View [layouts.user] not found.

最佳答案

您始终必须使用 View 的绝对路径。所以在你的情况下,这应该是:

@include('user.layouts.header')

@yield('content')

@include('user.layouts.footer')

路由文件的计数相同:
Route::get('/', function () {
return view('user.layouts.user');
});

关于php - laravel @include 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46031607/

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