当前位置:  开发笔记 > 编程语言 > 正文

在Laravel中征服意见

如何解决《在Laravel中征服意见》经验,为你挑选了1个好方法。

我正在学习Laravel,我想知道如何将多个视图结合在一起.

我查看了laravel.com上的文档,找不到告诉我如何连接视图的部分.

我已经解决了这个问题(在我的控制器中):

public function showPage() {
    return View::make('header') . View::make('content') . View::make('footer');
}

但肯定有更好/更正确的方式......我将不胜感激任何帮助.



1> Ozan Kurt..:

你可以加载这样的东西

public function showPage() {
    return View::make('page');
}

在你的page.blade.php:

@include('header')
@include('content')
@include('footer')

但实际上拥有这种结构会更好.

layout.blade.php:

@include('header')

@yield('content')

@include('footer')

page.blade.php:

@extends('layout')

@section('content')
     HTML of content here...
@stop

推荐阅读
mobiledu2402852413
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有