Getting started
This page is an overview of Grocery CRUD documentation and related resources.
Grocery CRUD is an open source library for Codeigniter 4 that auto generates a full CRUD system. The main unique feature of Grocery CRUD is that the CSS and the JavaScript used are production ready.
In simple terms with few PHP lines of codes:
$crud->setTable('customers');
$crud->setSubject('Customer', 'Customers');
$crud->columns(['customerName','phone','addressLine1','creditLimit']);
$output = $crud->render();
You can get the below output:
Below you can find pretty much everything you need in order to get started with Grocery CRUD
Examples
You can find the full list of all the functions that you can use from the API documentation link