PHPackages                             mfahmialif/dtable - 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. mfahmialif/dtable

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

mfahmialif/dtable
=================

Data Table for Laravel 8

02PHP

Since Apr 11Pushed 3y ago1 watchersCompare

[ Source](https://github.com/mfahmialif/dtable)[ Packagist](https://packagist.org/packages/mfahmialif/dtable)[ RSS](/packages/mfahmialif-dtable/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

dtable
======

[](#dtable)

Data Table for Laravel 8.

```
if (request()->ajax()) {
    $columns = array(
        0 => 'users.id',
        1 => 'users.picture',
        2 => 'users.username',
        3 => 'users.name',
        4 => 'users.email',
        5 => 'role.name',
    );

    $data = User::join('role', 'role.id', '=', 'users.role_id');
    $results = DataTable::results($columns, $data, $request);
    foreach ($results as $item) {
        $user = new User();
        $item->action = DataTable::addAction($item, $columns, $user->getTable());
        $item->users_picture = $item->picture != null ? '' : '';
    }

    $resultFiltered = DataTable::resultsFiltered($columns, $data, $request);
    return DataTable::responseDataTable($results, $resultFiltered, User::count());
}

```

Feel Free to use.

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

 Bus Factor1

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

### Community

Maintainers

![](https://www.gravatar.com/avatar/0addd533214be2c2b5d764a79f18413dd3f1a8e82804a633ce33aae72899124a?d=identicon)[mfahmialif](/maintainers/mfahmialif)

---

Top Contributors

[![mfahmialif](https://avatars.githubusercontent.com/u/37168225?v=4)](https://github.com/mfahmialif "mfahmialif (4 commits)")[![teavishtechno](https://avatars.githubusercontent.com/u/129362764?v=4)](https://github.com/teavishtechno "teavishtechno (1 commits)")

### Embed Badge

![Health badge](/badges/mfahmialif-dtable/health.svg)

```
[![Health](https://phpackages.com/badges/mfahmialif-dtable/health.svg)](https://phpackages.com/packages/mfahmialif-dtable)
```

###  Alternatives

[bertptrs/phpstreams

A streams library for PHP based on the Java 8 Streams API.

883.2k](/packages/bertptrs-phpstreams)[cheprasov/php-parallel

The class allows you to run multiple operations parallel in different processes and send results to the main process. Useful if you need to run multiple independent operations simultaneously, instead of sequential execution, or if you run several independent queries, for example, queries to different data bases

1712.5k5](/packages/cheprasov-php-parallel)

PHPackages © 2026

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