Laravel - @section到@Yield麻烦刀片

时间:2015-12-17 17:27:27

标签: laravel-5 yield sections laravel-blade

我在这里设置了我的主.php文件:views / layouts / app.blade.php 我的孩子在这里查看/ tasks.blade.php

在tasks.blade.php中,我编写了以下代码:

  @extends('layouts.app')
  @section('content')
    <div class="panel-body">
      <form action="/task" method="POST" class="form-horizontal">
         [content here]
      </form>
    </div>
  @endsection

在app.blade.php中我有一个基本的html设置,包含html-tags,bootstrap cdn和jquery。在我写的身体标签中:

@yield('content')

在routes.php中,localhost加载地图时的默认路由设置为&#39; tasks&#39;:

Route::get('/', function () {
return view('tasks');
});

但是,我没有在app.blade.php中显示tasks.blade.php。这就是我要归还的内容:

console browser

有任何解决方案吗?

0 个答案:

没有答案