我不能扩展已经扩展另一个布局的布局吗?
我想拥有
// 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');
}
我错过了什么?我可以只扩展一次布局吗?
提前致谢。