PHPackages                             lubos/table - 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. [Templating &amp; Views](/categories/templating)
4. /
5. lubos/table

ActiveCakephp-plugin[Templating &amp; Views](/categories/templating)

lubos/table
===========

CakePHP Table plugin helps you to create table via CakePHP helper

0.1.0(11y ago)182MITPHPPHP &gt;=5.4.0

Since Mar 28Pushed 11y ago1 watchersCompare

[ Source](https://github.com/LubosRemplik/CakePHP-Table)[ Packagist](https://packagist.org/packages/lubos/table)[ Docs](https://github.com/LubosRemplik/CakePHP-Table)[ RSS](/packages/lubos-table/feed)WikiDiscussions master Synced 1mo ago

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

CakePHP Table
=============

[](#cakephp-table)

[![Build Status](https://camo.githubusercontent.com/4929851e6cc1358d8fee8c416e5d60e457169bc43a40fc5472cffb177be5cdb3/68747470733a2f2f7472617669732d63692e6f72672f4c75626f7352656d706c696b2f43616b655048502d5461626c652e737667)](https://travis-ci.org/LubosRemplik/CakePHP-Table)[![Latest Stable Version](https://camo.githubusercontent.com/16ff14319183b4e46aa280bbca006a9f9d2c61e26ee235e5a1e98a53776357f8/68747470733a2f2f706f7365722e707567782e6f72672f6c75626f732f7461626c652f762f737461626c652e737667)](https://packagist.org/packages/lubos/table)[![Total Downloads](https://camo.githubusercontent.com/75e8f78d79d6f25a3c28bb51ebe5603ad7490c368dcf3bb9a5f987eaf258224a/68747470733a2f2f706f7365722e707567782e6f72672f6c75626f732f7461626c652f646f776e6c6f6164732e737667)](https://packagist.org/packages/lubos/table)[![Latest Unstable Version](https://camo.githubusercontent.com/dd862da5217c7756fbbe230e17ea71870c2de06314b60eb528675f4fd43103e7/68747470733a2f2f706f7365722e707567782e6f72672f6c75626f732f7461626c652f762f756e737461626c652e737667)](https://packagist.org/packages/lubos/table)[![License](https://camo.githubusercontent.com/8a99531d176e680359d389374544a52ce05ccd0a01fa7c4905fdbea4c92ba7cf/68747470733a2f2f706f7365722e707567782e6f72672f6c75626f732f7461626c652f6c6963656e73652e737667)](https://packagist.org/packages/lubos/table)

A CakePHP 3.x plugin for creating Html tables

Installation
------------

[](#installation)

```
composer require lubos/table

```

Load plugin in bootstrap.php file

```
Plugin::load('Lubos/Table');
```

Usage
-----

[](#usage)

In your controller

```
public $helpers = [
    'Lubos/Table.Table'
];
```

In your view
```php
$cells = [
    ['cell 00', 'cell 01', 'cell02'],
    ['cell 10', 'cell 11', 'cell12'],
    ['cell 20', 'cell 21', 'cell22']
];
$this->Table->create();
$this->Table
    ->startRow(['group' => 'head', 'class' => 'header'])
    ->header('header 1')
    ->header('header 2')
    ->header('header 3')
    ->endRow();
foreach ($cells as $row) {
    $this->Table->startRow();
    foreach ($row as $cell) {
        $this->Table->cell($cell);
    }
    $this->Table->endRow();
}
echo $this->Table->display();
```

## Bugs & Features

For bugs and feature requests, please use the issues section of this repository.

If you want to help, pull requests are welcome.
Please follow few rules:

- Fork & clone
- Code bugfix or feature
- Follow [CakePHP coding standards](https://github.com/cakephp/cakephp-codesniffer)
- Make tests and use phpunit to pass them
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

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

4070d ago

### Community

Maintainers

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

---

Tags

plugincakephptable

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/lubos-table/health.svg)

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

###  Alternatives

[dereuromark/cakephp-ajax

A CakePHP plugin that makes working with AJAX a piece of cake.

55255.9k1](/packages/dereuromark-cakephp-ajax)[backstageel/cakephp-gentelella-theme

CakePHP 3.x Gentelella Theme.

447.8k1](/packages/backstageel-cakephp-gentelella-theme)[dereuromark/cakephp-feed

A CakePHP plugin containing a RssView to generate RSS feeds.

1353.7k1](/packages/dereuromark-cakephp-feed)[dereuromark/cakephp-meta

A CakePHP plugin for SEO meta tags, OpenGraph and Twitter Cards

1012.9k1](/packages/dereuromark-cakephp-meta)

PHPackages © 2026

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