sub-index.template.blade.php 845 B

1234567891011121314151617181920212223242526272829303132
  1. @extends('_LAYOUT_')
  2. @section('content-inner')
  3. <div class="pb-3">
  4. <h5 class='my-3 d-flex stag-heading stag-heading-sub'>
  5. <div>_NAME_</div>
  6. <div class="ml-auto">
  7. <!-- _ADD_NEW_LINK_ -->
  8. </div>
  9. </h5>
  10. <div class="table-responsive p-0 bg-white border stag-table stag-table-sub">
  11. <table class="table table-hover text-nowrap">
  12. <thead>
  13. <tr>
  14. <!-- __SCAFFOLD_THS__ -->
  15. </tr>
  16. </thead>
  17. <tbody>
  18. @foreach($subRecords as $subRecord)
  19. <tr>
  20. <!-- __SCAFFOLD_TDS__ -->
  21. </tr>
  22. @endforeach
  23. </tbody>
  24. </table>
  25. </div>
  26. </div>
  27. @endsection