Use the jQuery data table. see docs here .
Here are the links for CSSandJS
http://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css
http://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js
So you need to add the following script to your file
$(document).ready(function(){
$('#myTable').DataTable();
});
You need to add id="myTable"a table to your element.
UPDATE
First download the files from the links above,
CSS project/public/css/ JS project/public/js/,
CSS
<link rel="stylesheet" href="{{ asset('css/dataTables.bootstrap.min.css') }}">
HTML
<table id="customTable">
....
</table>
JS
<script src="{{ asset('js/jquery.dataTables.min.js')}}"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.customTable').DataTable();
});
</script>