Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

mac03733's avatar

Best Datatable plugin for laravel ?

can anyone recommend a good datatable plugin for laravel, preferably with Server-side processing and easy to implement

0 likes
4 replies
mac03733's avatar

@phpMick i tried that one on a sample project ... but cant seem to get the customization right

mac03733's avatar

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.