Base Field Types
Basic field types support. xCRUD tries to define type automatically from database, or you can set it manually.
public function base_field_types()
{
$xcrud = get_xcrud();
$xcrud->table('base_fields');
$xcrud->no_editor('text_area');
$data['content'] = $xcrud->render('create');
return view('demos', $data);
}