gpapakitsos / laravel-datatables-api
jQuery DataTables API for Laravel
v1.12.0
2025-06-10 09:14 UTC
Requires
- php: >=7.0
- doctrine/dbal: ^3.6
- illuminate/database: >=5.5
- illuminate/http: >=5.5
- illuminate/routing: >=5.5
- illuminate/support: >=5.5
- nesbot/carbon: *
Requires (Dev)
- laravel/pint: ^1.0
- orchestra/testbench: >=3.5
README
This package handles server-side implementation of jQuery DataTables Plugin by using Laravel's Eloquent ORM.
Requirements
Installation
Require the package with composer.
composer require gpapakitsos/laravel-datatables-api
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"