index.template.blade.php 636 B

12345678910111213141516171819202122232425262728
  1. @extends('layouts.pro-logged-in')
  2. @section('content')
  3. <h2 class="d-flex mb-3">
  4. <div>_NAME_: List</div>
  5. <div class="ml-auto">
  6. <!-- _ADD_NEW_LINK_ -->
  7. </div>
  8. </h2>
  9. <div class="table-responsive p-0 bg-white border">
  10. <table class="table table-hover text-nowrap">
  11. <thead>
  12. <tr>
  13. <!-- __SCAFFOLD_THS__ -->
  14. </tr>
  15. </thead>
  16. <tbody>
  17. @foreach($records as $record)
  18. <tr>
  19. <!-- __SCAFFOLD_TDS__ -->
  20. </tr>
  21. @endforeach
  22. </tbody>
  23. </table>
  24. </div>
  25. @endsection