Blade なしでいくつかのビューを 1 つのセクションにマージする方法がわかりません。
コントローラ:
public $layout = 'layouts.template';
action_index{
$this->layout->nest('content', 'view1');
$this->layout->nest('content', 'view2');
}
テンプレート.php:
<?php echo Section::yield('content'); ?>
view1.php:
<?php Section::start('content');?>
div1....
<?php Section::stop(); ?>
view2.php:
<?php Section::start('content');?>
div2....
<?php Section::stop(); ?>
現在 - view2 のみが表示されます
そのようなものを達成する方法:
$content = View::make('view1');
$content = View::append('view2'); // append view2 to view1?
$this->layout->with('content', $content);