mardi 1 octobre 2019

How to implement datatables in laravel 5.5

I have hardcoded some sample data to check weather datatable is taking place or not

table.blade.php

<table class="table" id="table">
   <thead>
       <tr>
           <th class="text-center">First Name</th>
           <th class="text-center">Last Name</th>
           <th class="text-center">Email</th>
       </tr>
   </thead>
   <tbody>
       <tr>
           <td>1</td>
           <td>2</td>
           <td>3</td>
       </tr>       
   </tbody>
</table> 

Initializing css / js in header page

</head>
<script src="//code.jquery.com/jquery-1.12.3.js"></script>
<script src="//cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script    src="https://cdn.datatables.net/1.10.12/js/dataTables.bootstrap.min.js"></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.12/css/dataTables.bootstrap.min.css"> 
<head>

Javascript

<script>
 $(document).ready(function() {
   $('#table').DataTable();
} );
</script>

No error but not showing paging and search option



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire