I am new to cakephp & don\'t know what is the syntax to use LIKE & OR operator in cakephp with mysql.
Can anyone help me? T
if you using where function then use this :-
->where(['Products.category_id'=>1, 'Products.name LIKE' =>'test%'])
thanks