PHPackages                             kusmantopratama/ci4datatables - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. kusmantopratama/ci4datatables

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

kusmantopratama/ci4datatables
=============================

Simple Codeigniter 4 Library Serverside Datatables Inspired igniteddatatables and Laravel Yajra Datatables

1.0.1(4y ago)0722MITPHPPHP &gt;=7.2

Since Jun 18Pushed 4y ago1 watchersCompare

[ Source](https://github.com/kusmantopratama/Ci4datatables)[ Packagist](https://packagist.org/packages/kusmantopratama/ci4datatables)[ Docs](https://www.youtube.com/channel/UCayxI4iWN0iskWquK9qNqiw)[ RSS](/packages/kusmantopratama-ci4datatables/feed)WikiDiscussions Master Synced 2d ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

Ci4datatables
=============

[](#ci4datatables)

Server Side Datatables Library for CodeIgniter 4 Framework

Description
-----------

[](#description)

Library to make server side Datatables on CodeIgniter 4 to be **more easy**

if you want to see video how to implement this package, you can visit my video on [https://youtu.be/Lc\_xMWmprBQ](https://youtu.be/Lc_xMWmprBQ)

Requirements
------------

[](#requirements)

- Codeigniter 4.\*
- JQuery 3.\*
- JQuery Datatables

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

[](#installation)

Installation is best done via Composer, you may use the following command:

> composer require kusmantopratama/Ci4datatables

This will add the latest release of **Ci4datatables** as a module to your project.

### Manual Installation

[](#manual-installation)

Should you choose not to use Composer to install, you can download this repo, extract and rename this folder to **Ci4datatables**. Then enable it by editing **app/Config/Autoload.php** and adding the **Kusmantopratama\\Ci4datatables**namespace to the **$psr4** array. For example, if you copied it into **app/Libraries**:

```
    $psr4 = [
        'Config'      => APPPATH . 'Config',
        APP_NAMESPACE => APPPATH,
        'App'         => APPPATH,
        'Kusmantopratama\Ci4datatables'   => APPPATH .'Libraries/Ci4datatables/src',
    ];
```

Example:
--------

[](#example)

This is an example code for using this library:

- PHP:

```
