gpt4 book ai didi

php - 无法将数据从 Controller 传递到 Blade 模板 laravel

转载 作者:可可西里 更新时间:2023-11-01 00:32:58 24 4
gpt4 key购买 nike

在我的页面 Controller 中有

$this->layout->content = View::make('authentication/login')->with('page_title','title');

我正在为我的模板使用 Blade 文件。在 html 的头部,我有

<title>{{$page_title}}</title>

我得到一个错误,提示 $page_title 未定义。

理想情况下,我想要的是 $data=array('page_title'=>'Login','second_item'=>'value')...。但由于我无法将变量基本传递给 View ,所以我首先坚持这样做。

最佳答案

正如@Gravy 指出的那样,有很多方法可以实现这一点,但从她尝试编写代码的方式来看,解决方案是:

$data = array();
$this->layout->with('data', $data);
$this->layout->content = View::make('home');

在这里查看更多信息:http://forums.laravel.io/viewtopic.php?pid=58548#p58548

关于php - 无法将数据从 Controller 传递到 Blade 模板 laravel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19428212/

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