fawno/cakephp-datatables-helpers

DataTables Helpers for CakePHP 4.0

Installs: 25

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:cakephp-plugin

0.0.6 2023-06-22 11:41 UTC

This package is auto-updated.

Last update: 2024-04-22 13:22:06 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',
]);