| 123456789101112131415161718192021222324 |
- @extends('layouts.app')
- @section('title')特征@endsection
- @section('content')
- <div id="nav2">
- @component('maintenance.menu')@endcomponent
- @component('maintenance.feature.menu')@endcomponent
- </div>
- <div class="container-fluid card">
- <div class="card-body mt-2">
- <table class="table table-striped table-hover text-nowrap">
- <tr>
- <th>ID</th>
- <th>类型</th>
- <th>逻辑</th>
- <th>特征</th>
- <th>创建时间</th>
- <th>操作</th>
- </tr>
- </table>
- </div>
- </div>
- @stop
|