PHPackages                             softinline/jcrud - 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. [Admin Panels](/categories/admin)
4. /
5. softinline/jcrud

ActiveLibrary[Admin Panels](/categories/admin)

softinline/jcrud
================

crud methods for datatables, edit, add actions using json file for defines

1.0.102(1y ago)0484MITBladePHP &gt;=7.0

Since Jun 8Pushed 1y ago1 watchersCompare

[ Source](https://github.com/softinline/jcrud)[ Packagist](https://packagist.org/packages/softinline/jcrud)[ RSS](/packages/softinline-jcrud/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (10)DependenciesVersions (103)Used By (0)

 [![](https://camo.githubusercontent.com/463f63d656fe796f9a214d2f638f654fe4ac8620da9fc3761f0ff745a5842b8a/68747470733a2f2f7777772e736f6674696e6c696e652e636f6d2f77702d636f6e74656e742f75706c6f6164732f323032312f30342f6c6f676f2d3235302d626c61636b2e706e67)](https://camo.githubusercontent.com/463f63d656fe796f9a214d2f638f654fe4ac8620da9fc3761f0ff745a5842b8a/68747470733a2f2f7777772e736f6674696e6c696e652e636f6d2f77702d636f6e74656e742f75706c6f6164732f323032312f30342f6c6f676f2d3235302d626c61636b2e706e67)

About Softinline jCrud
----------------------

[](#about-softinline-jcrud)

Softinline jCrud is a package designed for help in crud datatable and forms generation, you can define in json files directly linked with controller / models, adding support for export, select rows, adding more buttons, all using the same style.

Components
----------

[](#components)

Softinline jCrud is a set of some components:

- jConfig (load files of config) and offers methods for get/set some configs in realtime access
- jTable (from json define file, can show diferent datatables, setting cols, orderable, searchable, etc...), one define file can store multiple lists under the tag list with diferents names, by default we are using 'index' list
- jForm, this class offers functionality about preapre form with diferent tabs, rows, and multiple input types (text, number, datetime, email, password, editor, custom, view, etc...)
- jcrud.js (this js store information about datatables created, select rows, validation function before submit forms, etc...)

jForm field types
-----------------

[](#jform-field-types)

```
- custom -> call method in controller parent to show some div or HTML code
- file
- date
- datetime
- text
- number
- password
- email
- button -> execute the 'action' key on json defines (normally javascript onclick event)
- checkbox
- textarea
- editor -> replaced with ckeditor needed the plugin installed and initialized
- select -> call controller method defined in 'selector' key on json defines see samples
- select-multiple -> call controller allow multiple selection, controller must return array with 'all' and 'selected' elements
- checkbox-multiple -> same as select-multiple but in checkbox format
- json -> displays information in json field (array) using
- view -> call view and load, view receives the $config, $item, etc vars with information (see documentation)

***
- childrens -> if field element has a children method, the fields inside can be displayed using a validation method that returns true or not, for example if you want to display more fields depends on select response.

```

Some samples
------------

[](#some-samples)

You can define your files in app/Defines (ex), in your controller you can use jConfig class to load your defines files like this

```
var $_jconfig;

/**
* Create a new controller instance.
* @return void
*/
public function __construct() {
    $this->_jconfig = new \Softinline\JCrud\JConfig();
    $this->_jconfig->load(app_path().'/Defines/admin-users.json', 'admin-users');
}
```

```
This is a simple basic sample define for table users:

{
    "admin-users":{
        "model":"User",
        "title":"users",
        "titleCustom":false,
        "url":"admin/users",
        "layout":"layouts.other",
        "lists":{
            "index":{
                "wrapper":false,
                "datatable":true,
                "class":false,
                "name":"admin-users",
                "cols":[
                    {
                        "name":"id",
                        "field":"id",
                        "orderable":true,
                        "searchable":true
                    },
                    {
                        "name":"created_at",
                        "field":"created_at",
                        "orderable":true,
                        "searchable":true
                    },
                    {
                        "name":"email",
                        "field":"email",
                        "orderable":true,
                        "searchable":true
                    },
                    {
                        "name":"actions",
                        "field":"actions",
                        "orderable":false,
                        "searchable":false
                    }
                ],
                "actions":{
                    "add":true,
                    "export":true,
                    "selector":true
                },
                "options":[
                    ["export", "fa fa-file", "js:crud.export"],
                    ["reports", "fa fa-list", "link:admin/users/reports"]
                ],
                "rowCallBack":false,
                "drawCallBack":false
            }
        },
        "forms":{
            "add":{
                "wrapper":false,
                "tabs":{
                    "general":{
                        "key":"general",
                        "title":"general",
                        "type":"form",
                            "fields":[
                            {
                                "type":"email",
                                "required":true,
                                "title":"email",
                                "field":"email"
                            },
                            {
                                "type":"password",
                                "required":false,
                                "title":"password",
                                "field":"password"
                            }
                        ],
                        "extraButtons":[]
                    },
                    "advanced":{
                        "key":"advanced",
                        "title":"advanced",
                        "type":"form",
                            "fields":[
                            {
                                "type":"textarea",
                                "required":true,
                                "title":"advanced1",
                                "field":"advanced2"
                            }
                        ],
                        "extraButtons":[]
                    },
                    "images":{
                        "key":"images",
                        "title":"images",
                        "type":"form",
                            "fields":[
                            {
                                "type":"file",
                                "required":true,
                                "title":"file",
                                "field":"file"
                            }
                        ],
                        "extraButtons":[]
                    }
                }
            },
            "edit":{
                "wrapper":false,
                "field_title":"email",
                "tabs":{
                    "general":{
                        "key":"general",
                        "title":"general",
                        "type":"form",
                            "fields":[
                            {
                                "type":"email",
                                "required":true,
                                "title":"email",
                                "field":"email"
                            },
                            {
                                "type":"password",
                                "required":false,
                                "title":"password",
                                "field":"password"
                            }
                        ],
                        "extraButtons":[]
                    }
                }
            }
        }
    }
}
```

if you want use rows and cols based on bootstrap you can use a special type field 'row' like this, each you can have n fields of the every type (text, password, editor, date, etc...)

```
{
    "type":"row",
    "fields":[
        {
            "type":"text",
            "required":false,
            "title":"field1",
            "field":"field1"
        },
        {
            "type":"text",
            "required":false,
            "title":"field2",
            "field":"field2"
        },
    ]
}
```

License
-------

[](#license)

The Softinline/JCrud is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 74.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~11 days

Recently: every ~55 days

Total

102

Last Release

668d ago

PHP version history (2 changes)1.0.0PHP &gt;=7.1

1.0.5PHP &gt;=7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/1aaffbbbece8546a3b3689b648a9a01c5b18b7fbb528860c4e6667e08dc0a470?d=identicon)[daniel@softinline.com](/maintainers/daniel@softinline.com)

---

Top Contributors

[![ddanilo09](https://avatars.githubusercontent.com/u/2464029?v=4)](https://github.com/ddanilo09 "ddanilo09 (90 commits)")[![softinline](https://avatars.githubusercontent.com/u/85578396?v=4)](https://github.com/softinline "softinline (31 commits)")

---

Tags

cruddatatablesformsjsonlaraveltablesjsonlaraveldatatablescrudformdatatableadd

### Embed Badge

![Health badge](/badges/softinline-jcrud/health.svg)

```
[![Health](https://phpackages.com/badges/softinline-jcrud/health.svg)](https://phpackages.com/packages/softinline-jcrud)
```

###  Alternatives

[pragmarx/datatables

Server-side handler of DataTables Jquery Plugin for Laravel 4

16307.7k14](/packages/pragmarx-datatables)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
