在上面代码中,我们添加了contetn,这里包含着我们的主要的内容,增加了页面标题针对不同的页面,将其重命名为dashboard.blade.php现在这个模板已经可以使用了。
测试页面
为了验证我们之前所做的工作,我将创建一个简单的页面
1.创建 test.blade.php
@extends('dashboard')
@section('content')
<div>
<div>
<!-- Box -->
<div>
<div>
<h3>Randomly Generated Tasks</h3>
<div>
<button data-widget="collapse" data-toggle="tooltip" title="Collapse"><i></i></button>
<button data-widget="remove" data-toggle="tooltip" title="Remove"><i></i></button>
</div>
</div>
<div>
@foreach($tasks as $task)
<h5>
{{ $task['name'] }}
<small>{{$task['progress']}}%</small>
</h5>
<div>
<div></div>
</div>
@endforeach
</div><!-- /.box-body -->
<div>
<form action='#'>
<input type='text' placeholder='New task' />
</form>
</div><!-- /.box-footer-->
</div><!-- /.box -->
</div><!-- /.col -->
<div>
<!-- Box -->
<div>
<div>
<h3>Second Box</h3>
<div>
<button data-widget="collapse" data-toggle="tooltip" title="Collapse"><i></i></button>
<button data-widget="remove" data-toggle="tooltip" title="Remove"><i></i></button>
</div>
</div>
<div>
A separate section to add any kind of widget. Feel free
to explore all of AdminLTE widgets by visiting the demo page
on <a href="https://almsaeedstudio.com">Almsaeed Studio</a>.
</div><!-- /.box-body -->
</div><!-- /.box -->
</div><!-- /.col -->
</div><!-- /.row -->
@endsection
2.创建TestController.php
php artisan make:controller TestController --plain
下面是这个控制器的代码部分: