Bootstrap tables
Bootstrap Sortable Table
| Name | Stars | Forks | Description |
|---|
Code Here:
<table data-bs-toggle="table"
data-url="https://api.github.com/users/wenzhixin/repos?type=owner&sort=full_name&direction=asc&per_page=100&page=1"
data-sort-name="stargazers_count" data-height="280" data-mobile-responsive="true"
data-sort-order="desc" class="table">
<thead>
<tr>
<th data-field="name" data-sortable="true"> Name </th>
<th data-field="stargazers_count" data-sortable="true" data-width="100">
Stars </th>
<th data-field="forks_count" data-sortable="true" data-width="100"> Forks
</th>
<th data-field="description" data-sortable="true"> Description </th>
</tr>
</thead>
</table>
Required Files For Bootstrap Table Here
<!-- Javascript Here -->
<script src="../admin-pro/src/assets/libs/bootstrap-table/dist/bootstrap-table.min.js"></script>
<script src="../admin-pro/src/assets/libs/bootstrap-table/dist/bootstrap-table-locale-all.min.js"></script>