This is what I recommend:
move
protected $ layout = ' master ';
to
BaseController
since all your controllers extend from BaseController, you can set the content to the layout from any of them like so:
$this->layout->content = 'my content goes here';
Then in your "index_layout" view you can read the content like so:
echo $content;
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community