fawno/cakephp-datatables-helpers

DataTables Helpers for CakePHP 4.0

Installs: 32

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:cakephp-plugin

0.0.7 2024-05-16 12:03 UTC

This package is auto-updated.

Last update: 2024-09-16 12:52:51 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',
]);