Basic Data Table

Docs
 jQuery(document).ready(function() {
  jQuery('#basic-data-table').DataTable({
   "dom": '<"row justify-content-between top-information"lf>rt<"row justify-content-between bottom-information"ip><"clear">'
  });
 });
<script src="assets/plugins/data-tables/jquery.datatables.min.js"></script>
<script src="assets/plugins/data-tables/datatables.bootstrap4.min.js"></script>
 <table id="basic-data-table" class="table nowrap" style="width:100%">
  <thead>
   <tr>
    <th>First name</th>
    <th>Last name</th>
    <th>Position</th>
    <th>Office</th>
    <th>Age</th>
    <th>Start date</th>
    <th>Salary</th>
    <th>Extn.</th>
    <th>E-mail</th>
   </tr>
  </thead>

  <tbody>
   <tr>
    <td>Tiger</td>
    <td>Nixon</td>
    <td>System Architect</td>
    <td>Edinburgh</td>
    <td>61</th>
    <td>2011/04/25</td>
    <td>$320,800</td>
    <td>5421</td>
    <td>t.nixon@datatables.net</td>
   </tr>
  </tbody>
 </table>
<link href="assets/plugins/data-tables/datatables.bootstrap4.min.css" rel="stylesheet">
<link href=""https://unpkg.com/sleek-dashboard/dist/assets/css/sleek.min.css">