Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 834 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 834 Bytes

CakePHP 4.x Helpers for DataTables

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',
]);