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

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

In Laravel 4, my controller uses a Blade layout:

class PagesController extends BaseController {
    protected $layout = \         


        
11条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-30 04:11

    For future Google'rs that use Laravel 5, you can now also use it with includes,

    @include('views.otherView', ['variable' => 1])
    

提交回复
热议问题