我创建了一个视图:
self.root.after(50, self.update_clock)
并且:layouts.dashboard
@extends('layouts.dashboard')
@section('wrapper')
<table class="table table-striped">
<tr>
<th>Username</th>
<th>Event-count</th>
<th>Is active</th>
</tr>
现在桌子显示在顶部而不是div类=&#34; main&#34;。有谁知道为什么?
答案 0 :(得分:1)
请仔细阅读https://laravel.com/docs/5.4/blade#extending-a-layout,我认为你没有正确定义你的收益率和部分。
我并不完全知道你要实现的是什么,但是*认为你应该将@yield('section')更改为@yield('wrapper')并将@endsection添加到视图中。
答案 1 :(得分:0)
下面
@extends('layouts.dashboard')
@section('wrapper')
<table class="table table-striped">
<tr>
<th>Username</th>
<th>Event-count</th>
<th>Is active</th>
</tr>
</table>
@endsection
并且:layouts.dashboard
<div class="main-panel">
@yield('wrapper')
</div>
那应该做的...让我知道这是否适合你:)