这是我的控制器:
class HomeController extends BaseController {
public $layout = 'default';
public function index()
{
$page = Page::find(1);
$this->layout->page_title = $page->page_title;
$allPages = Page::lists('title');
// Give the page it's needed content
$this->layout->nest('content', 'pages.home', array(
'pageHeading' => 'Rendered with Mustache.php',
'pageContent' => $allPages
));
}
}
我有一个名为的主模板default.blade.php
和一个名为home.mustashe
.
问题是,我想在home.mustache
模板中使用包含我所有页面标题的数组。如何将我的数组添加到home.mustache
模板中?
现在的代码给了我以下错误:Array to string conversion
我使用的 Mustache 包是:链接到 mustache 包