index.blade.php 650 B

12345678910111213141516171819202122232425
  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. <th>操作</th>
  17. </tr>
  18. </table>
  19. </div>
  20. @stop
  21. @section("lastScript")
  22. @stop