gpapakitsos / laravel-datatables-api
jQuery DataTables API for Laravel
Package info
github.com/george-papakitsos/laravel-datatables-api
pkg:composer/gpapakitsos/laravel-datatables-api
v1.13.2
2026-03-06 02:16 UTC
Requires
- php: ^8.1
- illuminate/database: >=10.0
- illuminate/http: >=10.0
- illuminate/routing: >=10.0
- illuminate/support: >=10.0
- nesbot/carbon: >=2.0
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pint: ^1.0
- orchestra/testbench: ^8.0
This package is auto-updated.
Last update: 2026-03-06 02:18:23 UTC
README
This package handles server-side implementation of jQuery DataTables Plugin by using Laravel's Eloquent ORM.
Requirements
Installation
Require the package with composer.
Laravel version >= 10
composer require gpapakitsos/laravel-datatables-api
Laravel version <= 9
composer require gpapakitsos/laravel-datatables-api "~1.12"
Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
Laravel without auto-discovery:
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
GPapakitsos\LaravelDatatables\DatatablesServiceProvider::class,
Copy the package config file to your local config folder with the publish command:
php artisan vendor:publish --provider="GPapakitsos\LaravelDatatables\DatatablesServiceProvider"