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