syamsoul/laravel-datatable-ssp
Laravel package to run DataTables in true server-side processing (SSP). Simplifies filtering, sorting, searching, and pagination with an API inspired by the original DataTables SSP class. Supports Laravel 9+ (PHP 8+) and integrates cleanly in controllers and views.
searchKeywordFormatter).Adopt if:
limit/offset queries).Look elsewhere if:
For Executives: "This package lets us build scalable, high-performance data tables in Laravel—like a ‘Turbo Mode’ for spreadsheets and admin panels. It cuts development time by 70% for features like user management or reporting, while ensuring smooth performance even with thousands of records. Think of it as ‘Google Sheets for our backend’: no more slow, clunky pages, and it works seamlessly with our existing tools."
Key Benefits:
For Engineers: *"This is a battle-tested SSP (Server-Side Processing) library for Laravel that:
use SoulDoit\DataTable\SSP).Example: Replace this:
// Manual SSP (error-prone)
$limit = $request->input('length');
$offset = $request->input('start');
$draw = $request->input('draw');
$users = User::offset($offset)->limit($limit)->get();
With this:
// 10 lines of config, done.
$ssp->setQuery(User::query());
$ssp->setColumns([...]);
return $ssp->response()->json();
```"*
How can I help you explore Laravel packages today?