index.blade.php 618 B

123456789101112131415161718192021222324
  1. @extends('layouts.app')
  2. @section('title')作业类型@endsection
  3. @section('content')
  4. <div id="nav2">
  5. @component('maintenance.menu')@endcomponent
  6. @component('maintenance.processMethod.menu')@endcomponent
  7. </div>
  8. <div class="container-fluid card">
  9. <table class="table table-hover table-striped text-nowrap card-body mt-2">
  10. <tr>
  11. <th>ID</th>
  12. <th>类型</th>
  13. <th>单位</th>
  14. <th>创建时间</th>
  15. <th>操作</th>
  16. </tr>
  17. </table>
  18. </div>
  19. @stop
  20. @section("lastScript")
  21. @stop