How do I pass a variable to the layout using Laravel' Blade templating?

后端 未结 11 2026
猫巷女王i
猫巷女王i 2021-01-30 03:30

In Laravel 4, my controller uses a Blade layout:

class PagesController extends BaseController {
    protected $layout = \         


        
11条回答
  •  孤街浪徒
    2021-01-30 04:26

    It appears as though I can pass variables to the entire layout using attributes on the layout object, for example to solve my problem I was able to do the following:

    $this->layout->title = 'Home page';
    

提交回复
热议问题