ArtiGrid
CKeditor
<?php
$grid = new ArtiGrid();
$grid->table('gallery')
->required(false)
->validation_required([
'title',
'description'
])
->ckeditor('description', [
'height' => 300,
]);
echo $grid->render('insert');
?>