Skip to content
Arjay Angeles edited this page Mar 1, 2016 · 2 revisions

Install through composer

composer require yajra/laravel-datatables-oracle:~6.0

For Laravel 4 users, checkout L4 branch or use composer require yajra/laravel-datatables-oracle:~3.0.

Register provider and alias and publish configuration

Once the package was downloaded, open "config/app.php" and register the provider and alias of the package:

    'providers' => [
        ...
        'Yajra\Datatables\DatatablesServiceProvider',
    ],

Facade

Datatables facade are automatically registered as an alias for Yajra\Datatables\Datatables class.

Configuration and Assets

$ php artisan vendor:publish --tag=datatables

And that's it! Start building out some awesome DataTables!