index.blade.php 686 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.feature.menu')@endcomponent
  7. </div>
  8. <div class="container-fluid card">
  9. <div class="card-body mt-2">
  10. <table class="table table-striped table-hover text-nowrap">
  11. <tr>
  12. <th>ID</th>
  13. <th>类型</th>
  14. <th>逻辑</th>
  15. <th>特征</th>
  16. <th>创建时间</th>
  17. <th>操作</th>
  18. </tr>
  19. </table>
  20. </div>
  21. </div>
  22. @stop