| 123456789101112131415161718192021222324 |
- <div>
- <div id="datatable-config"
- data-datatable-name="{{ $datatableName }}"
- data-datatable-columns-config='@json($datatableColumnsConfig)'>
- </div>
- <table id="{{$datatableName}}-table" class="bg-white border border-gray-300">
- <thead>
- <th class="border border-gray-300 px-4 py-2">Name</th>
- <th class="border border-gray-300 px-4 py-2">Email</th>
- <th class="border border-gray-300 px-4 py-2">Position</th>
- <th class="border border-gray-300 px-4 py-2">Office Name</th>
- <th class="border border-gray-300 px-4 py-2">Office Location</th>
- </thead>
- <tbody></tbody>
- </table>
- </div>
|