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:^7.0
Configuration
Open the file config/app.php
and then add the 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