Best Datatable plugin for laravel ?
can anyone recommend a good datatable plugin for laravel, preferably with Server-side processing and easy to implement
@phpMick i tried that one on a sample project ... but cant seem to get the customization right
this is how i installed it
npm install datatables.net
npm install datatables.net-dt
then in my app.js
var $ = require( 'jquery' );
var dt = require( 'datatables.net' )();
then in my blade
$(document).ready( function () {
$('#table_id').DataTable();
} );
this gave me a barley formatted table and the only way i can think of to customize it is by
targeting the elements directly .is there an easyier way
Please or to participate in this conversation.