Skip to content
Icon

WARNING You're browsing the documentation for an upcoming version of Laravel DataTables. The documentation and features of this release are subject to change.

Installation

Installation

Requirements

Installing Laravel DataTables

Laravel DataTables can be installed with Composer. More details about this package in Composer can be found here.

Run the following command in your project to get the latest version of the package:

composer require yajra/laravel-datatables-oracle:"^10.0"

If you are using most of the DataTables plugins like Buttons & Html, you can alternatively use the all-in-one installer package.

Laravel 9

composer require yajra/laravel-datatables:"^9.0"

Laravel 10

composer require yajra/laravel-datatables:^10.0

Configuration

This step is optional if you are using Laravel 5.5+

Open the file config/app.php and then add following service provider.

'providers' => [
// ...
Yajra\DataTables\DataTablesServiceProvider::class,
],

After completing the step above, use the following command to publish configuration & assets:

php artisan vendor:publish --tag=datatables