将变量从控制器传递到模板laravel

时间:2014-05-16 17:13:20

标签: php laravel laravel-4

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">

问题是

  1. 如何在@yield上获取admin title,而不是在控制器上设置default title

  2. 如何使用$ this-&gt; layout-&gt;变量在模板中传递变量?

1 个答案:

答案 0 :(得分:1)

  

我如何获得@yield上的默认标题,而不是我的管理标题   在控制器上设置?

register方法中,您使用以下行设置title

$this->layout->title = 'admin title';

您应该在{{ $title or 'Default Title' }}中使用view。这里,or用于在给定变量未定义时打印默认值。

  

如何使用$ this-&gt; layout-&gt;变量传递变量   模板?

您现在正在设置变量的方式,例如:

$this->layout->variable = 'value';