Usage issues of $layout in Laravel 5.3 controller

WBOY
Release: 2023-03-02 06:26:02
Original
1282 people have browsed it

In L4, you can define the $layout template in the controller and then use it in the request

<code>$this->layout->content = View::make(sth view)</code>
Copy after login
Copy after login

It doesn’t work in L5.3 today, do you have any solutions

Reply content:

In L4, you can define the $layout template in the controller and then use it in the request

<code>$this->layout->content = View::make(sth view)</code>
Copy after login
Copy after login

It doesn’t work in L5.3 today, do you have any solutions

I’m really sorry, I’ve never used L4

Controller in Laravel 5 is a blank class without any variables in it, including layout

Personally, it is recommended to re-read the manual to see how to use the view: https://laravel-china.org/doc... (Chinese)

Many upgrades and changes have been made in 5 and require re-learning.

If you are using

Laravel 5, try using it in the following way, which is to turn fields into methods

<code>// 在 controller 中设置原本4中设置的 $layout 视图值
public $layout_path = 'view_path';
// 提供一个方法获取 layout 视图
public function layout()
{
    return view($this->layout_path);
}
// 使用( 将原本的$this->layout 改成 $this->layout() )
$this->layout()->content = View::make(sth view);</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!