Hi Johnny,
I have also purchased Grocery Crud Enterprise and I have an issue with usage of Set Relation (or Default Ordering) when I use the Syntax.
Example :
$crud->setRelation('lmc_title','lm_parameters','p_value', [
'lm_parameters.p_type' => 'cust_title'
]);
I have no error when form is generated but I have One record Empty.
When I remove the Where clause ... All lines are generated but without filtering
Just for info I have the same problem with default Ordering
$crud->defaultOrdering('p_type', 'asc');
This Works !!!
$crud->defaultOrdering([
'p_type' => 'as'
]);
This works Not ... But the 2 are similars. I am on XAMPP with GC Entr 2.5.
Could you give me a Trick ?