App\Http\Controllers\BaseController::setupLayout PHP Method

setupLayout() protected method

Setup the layout used by the controller.
protected setupLayout ( ) : void
return void
    protected function setupLayout()
    {
        if (!is_null($this->layout)) {
            $this->layout = View::make($this->layout);
        }
    }