I have an existing website that has a LOT of template data defined as $this->data[xxx]. It is passed to the view like below:
public function example() {
$this->data['mh_admin_view'] = 'mh-admin/blank/blank';
}
}
How can I get grocery crud into $this->data? thank you.
Regards