【发布时间】:2013-11-03 15:11:21
【问题描述】:
我不能扩展已经扩展了另一个布局的布局吗?
我想拥有
// layouts/default.blade.php
<html>
...
@yield('content')
...
</html>
在那之前一切都很好......
// users/myaccount.blade.php
@extends('layouts.default')
@section('content')
@section('user-page')
some default static content for the user page
@stop
@stop
但是当我尝试用
修改user-page部分的内容时
// users/orders.blade.php
@extends('users.myaccount')
@section('user-page')
content for messages page
@stop
没有交易。它呈现我帐户的内容,但不呈现订单的内容。 我像这样从 UserController 调用它
public function orders() {
return View::make('users.orders');
}
我错过了什么?我可以只扩展一次布局吗?
提前致谢。
【问题讨论】: