adminController.php
<?php
class AdminController extends BaseController {
protected $layout = 'layouts.admin';
/**
* Show the profile for the given user.
*/
public function register()
{
$this->layout->title = 'admin title';
$this->layout->menu_active = 'register';
$this->layout->content = View::make('pages.admin.register');
}
}
布局/ admin.blade.php
<!doctype html>
<html>
<head>
@include('includes.head')
</head>
<body>
<div class="container">
<header class="row">
@include('includes.header')
</header>
<div id="main" class="row">
@yield('content')
</div>
<footer class="row">
@include('includes.footer')
</footer>
</div>
</body>
</html>
包括/ head.blade.php
<meta charset="utf-8">
<meta name="description" content="">
<meta name="author" content="Scotch">
<title>@yield('title', 'default title')</title>
<!-- load bootstrap from a cdn -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/twitter-bootstrap/3.0.3/css/bootstrap-combined.min.css">
问题是
如何在@yield上获取admin title
,而不是在控制器上设置default title
?
如何使用$ this-&gt; layout-&gt;变量在模板中传递变量?
答案 0 :(得分:1)
我如何获得@yield上的默认标题,而不是我的管理标题 在控制器上设置?
在register
方法中,您使用以下行设置title
$this->layout->title = 'admin title';
您应该在{{ $title or 'Default Title' }}
中使用view
。这里,or
用于在给定变量未定义时打印默认值。
如何使用$ this-&gt; layout-&gt;变量传递变量 模板?
您现在正在设置变量的方式,例如:
$this->layout->variable = 'value';