PHPackages                             frf/laravel-datatables-oracle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. frf/laravel-datatables-oracle

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

frf/laravel-datatables-oracle
=============================

jQuery DataTables API for Laravel 4|5

v8.8(7y ago)046MITPHPPHP &gt;=7.0

Since Oct 10Pushed 7y ago1 watchersCompare

[ Source](https://github.com/frf/laravel-datatables)[ Packagist](https://packagist.org/packages/frf/laravel-datatables-oracle)[ RSS](/packages/frf-laravel-datatables-oracle/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (6)Versions (2)Used By (0)

jQuery DataTables API for Laravel 4|5
=====================================

[](#jquery-datatables-api-for-laravel-45)

[![Join the chat at https://gitter.im/yajra/laravel-datatables](https://camo.githubusercontent.com/8c45475384ed8c85dff5291432b446ed7947cc81b09eb6c6bae0275aad633237/68747470733a2f2f6261646765732e6769747465722e696d2f79616a72612f6c61726176656c2d646174617461626c65732e737667)](https://gitter.im/yajra/laravel-datatables?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)[![Donate](https://camo.githubusercontent.com/d47cdb766a100070d38a702d9c7760ccc8052063484e1478a26bcd16680d33af/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646f6e6174652d70617970616c2d626c75652e737667)](https://www.paypal.me/yajra)[![Donate](https://camo.githubusercontent.com/b8c0238c370d2379c32ad625aae27de6c2f9e6f43b31e7d36ee4fb609121bfe0/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646f6e6174652d70617472656f6e2d626c75652e737667)](https://www.patreon.com/bePatron?u=4521203)

[![Laravel 4.2|5.x](https://camo.githubusercontent.com/db49c9101ce44af9e296c843e71995eef38e356cce6a0d32190e5d378b0f8984/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d342e32253743352e782d6f72616e67652e737667)](http://laravel.com)[![Latest Stable Version](https://camo.githubusercontent.com/62213978574beb9275eabe757f7c17642af4968e58b3db70dffc8c62395d3cbb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f79616a72612f6c61726176656c2d646174617461626c65732d6f7261636c652e737667)](https://packagist.org/packages/yajra/laravel-datatables-oracle)[![Latest Unstable Version](https://camo.githubusercontent.com/de12808e0d00d47950e98c3ff6585229169749e7ec0e589aec9c7d048810395a/68747470733a2f2f706f7365722e707567782e6f72672f79616a72612f6c61726176656c2d646174617461626c65732d6f7261636c652f762f756e737461626c652e737667)](https://packagist.org/packages/yajra/laravel-datatables-oracle)[![Build Status](https://camo.githubusercontent.com/25a9600d62e4ad37e59868d6dd6567aa9f5e57d0744137b1c2507e484fa55fd4/68747470733a2f2f7472617669732d63692e6f72672f79616a72612f6c61726176656c2d646174617461626c65732e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/yajra/laravel-datatables)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/0c69761dbf7e09fd9af8159a6de5de8f0c9ea1fb2f82aad22578f44d83936cc4/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f79616a72612f6c61726176656c2d646174617461626c65732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/yajra/laravel-datatables/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/321386e5b5c9bfb11180b6b3e13d20610a7b0260dee7cf5f8e4450bf6073bfb3/68747470733a2f2f706f7365722e707567782e6f72672f79616a72612f6c61726176656c2d646174617461626c65732d6f7261636c652f646f776e6c6f6164732e706e67)](https://packagist.org/packages/yajra/laravel-datatables-oracle)[![License](https://camo.githubusercontent.com/850eae1099d2b05f53383473d7cd51f9bc1ab09b7d0d9e5122f1dd930efdcc6d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6d6173686170652f6170697374617475732e737667)](https://packagist.org/packages/yajra/laravel-datatables-oracle)

This package is created to handle [server-side](https://www.datatables.net/manual/server-side) works of [DataTables](http://datatables.net) jQuery Plugin via [AJAX option](https://datatables.net/reference/option/ajax) by using Eloquent ORM, Fluent Query Builder or Collection.

```
return datatables()->of(User::query())->toJson();
return datatables()->of(DB::table('users'))->toJson();
return datatables()->of(User::all())->toJson();

return datatables()->eloquent(User::query())->toJson();
return datatables()->query(DB::table('users'))->toJson();
return datatables()->collection(User::all())->toJson();

return datatables(User::query())->toJson();
return datatables(DB::table('users'))->toJson();
return datatables(User::all())->toJson();
```

Requirements
------------

[](#requirements)

- [PHP &gt;= 7.0](http://php.net/)
- [Laravel 5.4|5.5|5.6](https://github.com/laravel/framework)
- [jQuery DataTables v1.10.x](http://datatables.net/)

Documentations
--------------

[](#documentations)

- [Laravel DataTables Documentation](http://yajrabox.com/docs/laravel-datatables)
- [Laravel DataTables API](https://datatables.net/reference/api/)
- [Laravel 5.0 - 5.3 Demo Application](http://datatables.yajrabox.com)
- [Laravel 5.4 Demo Application](http://dt54.yajrabox.com)

Laravel Version Compatibility
-----------------------------

[](#laravel-version-compatibility)

LaravelPackage4.2.x3.x5.0.x6.x5.1.x6.x5.2.x6.x5.3.x6.x5.4.x7.x, 8.x5.5.x8.x5.6.x8.x5.7.x8.xDataTables 8.x Upgrade Guide
----------------------------

[](#datatables-8x-upgrade-guide)

There are breaking changes since DataTables v8.x. If you are upgrading from v7.x to v8.x, please see [upgrade guide](https://yajrabox.com/docs/laravel-datatables/master/upgrade).

Quick Installation
------------------

[](#quick-installation)

```
$ composer require yajra/laravel-datatables-oracle:"~8.0"
```

#### Service Provider &amp; Facade (Optional on Laravel 5.5)

[](#service-provider--facade-optional-on-laravel-55)

Register provider and facade on your `config/app.php` file.

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

'aliases' => [
    ...,
    'DataTables' => Yajra\DataTables\Facades\DataTables::class,
]
```

#### Configuration (Optional)

[](#configuration-optional)

```
$ php artisan vendor:publish --provider="Yajra\DataTables\DataTablesServiceProvider"
```

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

Debugging Mode
--------------

[](#debugging-mode)

To enable debugging mode, just set `APP_DEBUG=true` and the package will include the queries and inputs used when processing the table.

**IMPORTANT:** Please make sure that APP\_DEBUG is set to false when your app is on production.

PHP ARTISAN SERVE BUG
---------------------

[](#php-artisan-serve-bug)

Please avoid using `php artisan serve` when developing with the package. There are known bugs when using this where Laravel randomly returns a redirect and 401 (Unauthorized) if the route requires authentication and a 404 NotFoundHttpException on valid routes.

It is advised to use [Homestead](https://laravel.com/docs/5.4/homestead) or [Valet](https://laravel.com/docs/5.4/valet) when working with the package.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/yajra/laravel-datatables/blob/master/.github/CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Arjay Angeles](https://github.com/yajra)
- [bllim/laravel4-datatables-package](https://github.com/bllim/laravel4-datatables-package)
- [All Contributors](https://github.com/yajra/laravel-datatables/graphs/contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://github.com/yajra/laravel-datatables/blob/master/LICENSE.md) for more information.

Buy me a coffee
---------------

[](#buy-me-a-coffee)

[![paypal](https://camo.githubusercontent.com/e1ff554a09e8e92bef25abc553ff05b88f45afd695877cf12f3a46558ef65b2e/68747470733a2f2f7777772e70617970616c6f626a656374732e636f6d2f656e5f55532f692f62746e2f62746e5f646f6e61746543435f4c472e676966)](https://www.paypal.me/yajra)[![Become a Patron](https://camo.githubusercontent.com/bc101c1d13e9c8f6ab92026eb037a37dc71f582e7c14f2f8ddce7503a3f05a64/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f70617472656f6e5f7075626c69635f6173736574732f746f6f6c626f782f70617472656f6e2e706e67)](https://www.patreon.com/bePatron?u=4521203)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2771d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1245164?v=4)[Fabio Rocha](/maintainers/frf)[@frf](https://github.com/frf)

---

Top Contributors

[![frf](https://avatars.githubusercontent.com/u/1245164?v=4)](https://github.com/frf "frf (3 commits)")

---

Tags

laraveljquerydatatables

### Embed Badge

![Health badge](/badges/frf-laravel-datatables-oracle/health.svg)

```
[![Health](https://phpackages.com/badges/frf-laravel-datatables-oracle/health.svg)](https://phpackages.com/packages/frf-laravel-datatables-oracle)
```

###  Alternatives

[yajra/laravel-datatables-oracle

jQuery DataTables API for Laravel

4.9k33.8M339](/packages/yajra-laravel-datatables-oracle)[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[psalm/plugin-laravel

Psalm plugin for Laravel

3274.9M308](/packages/psalm-plugin-laravel)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[yajra/laravel-datatables-editor

Laravel DataTables Editor plugin for Laravel 5.5+.

1186.1M2](/packages/yajra-laravel-datatables-editor)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
