PHPackages                             printempw/laravel-datatables-lite - 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. printempw/laravel-datatables-lite

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

printempw/laravel-datatables-lite
=================================

A lite version of yajra/laravel-datatables, with HTML builders &amp; exporting removed.

v1.0.1(8y ago)01.5k1MITPHPPHP &gt;=5.5.9

Since Jan 14Pushed 8y ago1 watchersCompare

[ Source](https://github.com/printempw/laravel-datatables-lite)[ Packagist](https://packagist.org/packages/printempw/laravel-datatables-lite)[ RSS](/packages/printempw-laravel-datatables-lite/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (8)Versions (3)Used By (1)

Attention!
==========

[](#attention)

This repository is a lite fork of yajra/laravel-datatables, which removed HTML builder, Excel/PDF/CSV exporting and so on. The lite version has no such huge dependencies.

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)

[![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)[![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/0984fa7586289c370d55c7472659674049464d7f38a0b55ec5339e857d373d62/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f79616a72612f6c61726176656c2d646174617461626c65732d6f7261636c652e737667)](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.

```
use Yajra\Datatables\Facades\Datatables;

// Using Eloquent
return Datatables::eloquent(User::query())->make(true);

// Using Query Builder
return Datatables::queryBuilder(DB::table('users'))->make(true);

// Using Collection
return Datatables::collection(User::all())->make(true);

// Using the Engine Factory
return Datatables::of(User::query())->make(true);
return Datatables::of(DB::table('users'))->make(true);
return Datatables::of(User::all())->make(true);
```

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

[](#requirements)

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

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

[](#documentations)

- [Laravel Datatables Documentation](https://yajrabox.com/docs/laravel-datatables/6.0)
- [Laravel Datatables API](http://yajra.github.io/laravel-datatables/api/6.0)
- [Demo Application](http://datatables.yajrabox.com) is available for artisan's reference.

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

[](#quick-installation)

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

#### Service Provider

[](#service-provider)

`Yajra\Datatables\DatatablesServiceProvider::class`

#### Facade

[](#facade)

`Datatables` facade is automatically registered as an alias for `Yajra\Datatables\Facades\Datatables` class.

#### Configuration and Assets

[](#configuration-and-assets)

`$ php artisan vendor:publish --tag=datatables`

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.

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)

- [![Click here to lend your support to: Laravel Datatables and make a donation at pledgie.com !](https://camo.githubusercontent.com/5cd985b06c81b5c59aaf44f44bac58359a580a1edf43537012aab92dafa1468f/68747470733a2f2f706c65646769652e636f6d2f63616d706169676e732f32393531352e706e673f736b696e5f6e616d653d6368726f6d65)](https://pledgie.com/campaigns/29515)
- [![Become a Patron](https://camo.githubusercontent.com/bc101c1d13e9c8f6ab92026eb037a37dc71f582e7c14f2f8ddce7503a3f05a64/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f70617472656f6e5f7075626c69635f6173736574732f746f6f6c626f782f70617472656f6e2e706e67)](https://www.patreon.com/bePatron?u=4521203)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community22

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90.3% 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

Every ~390 days

Total

2

Last Release

3015d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/dd149af77e948c46aa5eae96a1f3cdb9c0e11c4d60e70587210cfb495f909e86?d=identicon)[printempw](/maintainers/printempw)

---

Top Contributors

[![yajra](https://avatars.githubusercontent.com/u/2687997?v=4)](https://github.com/yajra "yajra (881 commits)")[![vladkucherov](https://avatars.githubusercontent.com/u/4151984?v=4)](https://github.com/vladkucherov "vladkucherov (12 commits)")[![tortuetorche](https://avatars.githubusercontent.com/u/5038872?v=4)](https://github.com/tortuetorche "tortuetorche (11 commits)")[![MarkVaughn](https://avatars.githubusercontent.com/u/39970?v=4)](https://github.com/MarkVaughn "MarkVaughn (6 commits)")[![ethaizone](https://avatars.githubusercontent.com/u/1168777?v=4)](https://github.com/ethaizone "ethaizone (6 commits)")[![intech](https://avatars.githubusercontent.com/u/451306?v=4)](https://github.com/intech "intech (4 commits)")[![openvast](https://avatars.githubusercontent.com/u/9793122?v=4)](https://github.com/openvast "openvast (4 commits)")[![DarkaOnLine](https://avatars.githubusercontent.com/u/1171698?v=4)](https://github.com/DarkaOnLine "DarkaOnLine (4 commits)")[![prinsss](https://avatars.githubusercontent.com/u/11206497?v=4)](https://github.com/prinsss "prinsss (4 commits)")[![ansient](https://avatars.githubusercontent.com/u/16032418?v=4)](https://github.com/ansient "ansient (3 commits)")[![DDiimmkkaass](https://avatars.githubusercontent.com/u/4235713?v=4)](https://github.com/DDiimmkkaass "DDiimmkkaass (3 commits)")[![donnykurnia](https://avatars.githubusercontent.com/u/95402?v=4)](https://github.com/donnykurnia "donnykurnia (3 commits)")[![ElfSundae](https://avatars.githubusercontent.com/u/526008?v=4)](https://github.com/ElfSundae "ElfSundae (3 commits)")[![hiendv](https://avatars.githubusercontent.com/u/1917947?v=4)](https://github.com/hiendv "hiendv (3 commits)")[![Nks](https://avatars.githubusercontent.com/u/349293?v=4)](https://github.com/Nks "Nks (3 commits)")[![pettercastro](https://avatars.githubusercontent.com/u/5422564?v=4)](https://github.com/pettercastro "pettercastro (3 commits)")[![nightowl77](https://avatars.githubusercontent.com/u/414532?v=4)](https://github.com/nightowl77 "nightowl77 (2 commits)")[![ikerasLT](https://avatars.githubusercontent.com/u/7137426?v=4)](https://github.com/ikerasLT "ikerasLT (2 commits)")[![ChrisReid](https://avatars.githubusercontent.com/u/2385373?v=4)](https://github.com/ChrisReid "ChrisReid (2 commits)")[![Huracan88](https://avatars.githubusercontent.com/u/11155209?v=4)](https://github.com/Huracan88 "Huracan88 (2 commits)")

---

Tags

laraveldatatableslaravel5datatablelaravel4datatables jquery plugin

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/printempw-laravel-datatables-lite/health.svg)

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

###  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)[bllim/datatables

Server-side handler of DataTables Jquery Plugin for Laravel 4

261413.7k4](/packages/bllim-datatables)[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)[pragmarx/datatables

Server-side handler of DataTables Jquery Plugin for Laravel 4

16307.7k14](/packages/pragmarx-datatables)

PHPackages © 2026

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