我一直在阅读 Laravel 4 文档并制作了一个演示应用程序来帮助学习。
我找不到太多关于使用刀片和控制器进行视图模板化的文档。哪种方法是正确的,还是取决于个人喜好?
例如 1
控制器/HomeController.php
protected $layout = 'layouts.main';
public function showWelcome()
{
$this->layout->title = "Page Title";
$this->layout->content = View::make('welcome');
}
视图/布局/main.blade.php
<html>
<head>
<title>{{ $title }}</title>
</head>
<body>
{{ $content }}
</body>
</html>
意见/welcome.blade.php
<p>Welcome.</p>
例如 2
控制器/HomeController.php
protected $layout = 'layouts.main';
public function showWelcome()
{
$this->layout->content = View::make('welcome');
}
视图/布局/main.blade.php
<html>
<head>
<title>@yield('title')</title>
</head>
<body>
@yield('content')
</body>
</html>
意见/welcome.blade.php
@section('title', 'Welcome')
@section('content')
// content
@stop
上述最佳约定和/或优势是什么?