【发布时间】:2014-05-18 02:58:36
【问题描述】:
我从 Blade 上的 Laravel 收到以下错误:
syntax error, unexpected end of file, expecting variable (T_VARIABLE) or ${ (T_DOLLAR_OPEN_CURLY_BRACES) or {$ (T_CURLY_OPEN)
这是我所做的。
我的控制器:
class AdminPostingController extends AdminBaseController
{
protected $layout = "Admin.master";
function postNew()
{
$this->layout->content = View::make("Admin.index");
}
}
我的 Admin.index 文件:
@extends("Admin.master')
@section("content")
<p>Example P</p>
@stop
这里是 Admin.master.blade.php:
@yield("content")
【问题讨论】:
-
每个文件使用的文件名是什么,你的视图文件的路径是什么?