fawno/cakephp-datatables-helpers

DataTables Helpers for CakePHP 4.0

Maintainers

Package info

github.com/fawno/CakePHP-DataTables

Type:cakephp-plugin

pkg:composer/fawno/cakephp-datatables-helpers

Statistics

Installs: 57

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.9 2025-02-18 20:50 UTC

This package is auto-updated.

Last update: 2026-03-18 23:33:33 UTC


README

CakePHP 4.x Helpers to generate HTML with DataTables

How to... ?

Installation

If you want the latest version of the plugin:

  • Add the plugin to your composer.json (see below if you want to use another branch / version):
composer require fawno/cakephp-datatables-helpers:dev-master
// Or the following if you want to use the stable version:
composer require fawno/cakephp-datatables-helpers:@stable
  • Load the plugin in your src/Application.php:
$this->addPlugin('DataTables');
$this->loadHelper('Table', [
    'className' => 'DataTables.Table',
]);