PHPackages                             aizhar777/cell - 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. aizhar777/cell

AbandonedArchivedLibrary

aizhar777/cell
==============

Laravel package for generate html table

v1.0(9y ago)1801MITPHP

Since Oct 28Pushed 9y ago1 watchersCompare

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

READMEChangelogDependencies (1)Versions (2)Used By (0)

Cell
====

[](#cell)

Cell: The wrapper on a package of "donquixote/cellbrush" for Laravel

Install
-------

[](#install)

Begin by installing the package through Composer.

```
composer require aizhar777/cell

```

Once this operation is complete, simply add both the service provider and facade classes to your project's config/app.php file:

#### Service Provider

[](#service-provider)

```
Aizhar777\Cell\CellServiceProvider::class,

```

#### Facade

[](#facade)

```
'Cell' => Aizhar777\Cell\Facades\Cell::class,
```

Basic usage
-----------

[](#basic-usage)

A simple 3x3 table with the diagonal cells filled.

```
namespace App\Http\Controllers;

class TestController extends Controller
{
    public function index()
    {
        $table = \Cell::create()
            ->addClass('table table-bordered')
            ->addRowNames(['row0', 'row1', 'row2'])
            ->addColNames(['col0', 'col1', 'col2'])
            ->td('row0', 'col0', 'Diag 0')
            ->td('row1', 'col1', 'Diag 1')
            ->td('row2', 'col2', 'Diag 2');

        return view('test_view', ['table' => $table->render()]);
    }
}
```

test\_view.blade.php:

```

{{ $table }}

```

#### Result

[](#result)

  Diag 0 Diag 1 Diag 2 #### Nested groups

[](#nested-groups)

Groups can have unlimited depth.

```
$table = \Cell::create()
    ->addRowNames(['T', 'B.T', 'B.B.T', 'B.B.B'])
    ->addColNames(['L', 'R.L', 'R.R.L', 'R.R.R'])
    ->td('T', '', 'top')
    ->td('B', 'L', 'bottom left')
    ->td('B.T', 'R', 'B.T / R')
    ->td('B.B', 'R.L', 'B.B / R.L')
    ->td('B.B.T', 'R.R', 'B.B.T / R.R')
    ->td('B.B.B', 'R.R.L', 'B.B.B / R.R.L')
    ->td('B.B.B', 'R.R.R', 'B.B.B / R.R.R');
```

Result:

  top bottom leftB.T / R B.B / R.LB.B.T / R.R B.B.B / R.R.LB.B.B / R.R.R [More examples](https://github.com/donquixote/cellbrush/blob/1.0/README.md)

### Requires

[](#requires)

[donquixote/cellbrush](https://github.com/donquixote/cellbrush)

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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

3480d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2b8eac871af9cf21f7017b951269fbbeaa13382fc1d5ffa0501b45c947470199?d=identicon)[aizhar777](/maintainers/aizhar777)

---

Top Contributors

[![olexin-pro](https://avatars.githubusercontent.com/u/9531609?v=4)](https://github.com/olexin-pro "olexin-pro (6 commits)")

---

Tags

laravelhtml-tableaizhar777

### Embed Badge

![Health badge](/badges/aizhar777-cell/health.svg)

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

###  Alternatives

[rtconner/laravel-likeable

Trait for Laravel Eloquent models to allow easy implementation of a 'like' or 'favorite' or 'remember' feature.

394388.0k5](/packages/rtconner-laravel-likeable)[hemp/presenter

Easy Model Presenters in Laravel

247592.6k1](/packages/hemp-presenter)[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)

PHPackages © 2026

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