show-reports.blade.php 678 B

123456789101112131415161718192021222324
  1. <div>
  2. <div id="datatable-config"
  3. data-datatable-name="{{ $datatableName }}"
  4. data-datatable-columns-config='@json($datatableColumnsConfig)'>
  5. </div>
  6. <table id="{{$datatableName}}-table" class="bg-white border border-gray-300">
  7. <thead>
  8. <th class="border border-gray-300 px-4 py-2">Name</th>
  9. <th class="border border-gray-300 px-4 py-2">Email</th>
  10. <th class="border border-gray-300 px-4 py-2">Position</th>
  11. <th class="border border-gray-300 px-4 py-2">Office Name</th>
  12. <th class="border border-gray-300 px-4 py-2">Office Location</th>
  13. </thead>
  14. <tbody></tbody>
  15. </table>
  16. </div>