douhuzhi0907 2016-07-01 01:08
浏览 103
已采纳

在控制器中设置默认布局(Laravel 5.2)

I'd like to set a default layout in my BaseController, so that it is used for every view I have. I don't want to use "@extends" in every single view.

In Laravel 4 this was easy to do. Now I can't find any way to do this in Laravel 5.2 .

Does anyone have an idea?

BTW: this is my first question on stackoverflow, I hope i'm following the rules.

  • 写回答

1条回答 默认 最新

  • dousha7645 2016-07-02 01:25
    关注

    I found the solution. Kind of dumb of me not to look deeper into the Laravel 4 code. I thought layouts were chained somewhere deep in the core, but it was just the Controller, which has a "callAction" function. This function sets up the layout and then calls the right method.

    Below is the code for this, taken from here:

    https://laracasts.com/discuss/channels/general-discussion/laravel-5-this-layout-content-not-working

    <?php namespace App\Http\Controllers;
    
    use Illuminate\Routing\Controller;
    
    class BaseController extends Controller {
    
    protected $layout = 'core::layouts.default';
    
    /**
     * Show the user profile.
     */
    public function setContent($view, $data = [])
    {
    
        if ( ! is_null($this->layout))
        {
            return $this->layout->nest('child', $view, $data);
        }
    
        return view($view, $data);
    
    }
    
    /**
     * Set the layout used by the controller.
     *
     * @param $name
     * @return void
     */
    protected function setLayout($name)
    {
        $this->layout = $name;
    }
    
    /**
     * Setup the layout used by the controller.
     *
     * @return void
     */
    protected function setupLayout()
    {
        if ( ! is_null($this->layout))
        {
            $this->layout = view($this->layout);
        }
    }
    
    
    public function callAction($method, $parameters)
    {
        $this->setupLayout();
    
        $response = call_user_func_array(array($this, $method), $parameters);
    
    
        if (is_null($response) && ! is_null($this->layout))
        {
            $response = $this->layout;
        }
    
        return $response;
    }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 BP神经网络控制倒立摆
  • ¥20 要这个数学建模编程的代码 并且能完整允许出来结果 完整的过程和数据的结果
  • ¥15 html5+css和javascript有人可以帮吗?图片要怎么插入代码里面啊
  • ¥30 Unity接入微信SDK 无法开启摄像头
  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算