render

render()

This is the most basic function that exists in grocery CRUD. In other words this means “make it work”.

Example

A very simple example of the below lines:

$crud->setTable('customers');
$crud->setSubject('Customer', 'Customers');
$crud->columns(['customerName','phone','addressLine1','creditLimit']);

$output = $crud->render();

Can have the below result. The below code is not an iframe so you can also check the code produced by simply checking the page source of the webpage