Please help me to use multiple conditions in Codeigniter 4?
I have used the following codes but it doesn't work, threw an error, with one like its working fine.
$users = $model->like('title', $this->request->getVar('search'))->like('name', $this->request->getVar('search'))->get();
$db = \Config\Database::connect();
$user = $db->table('staff');
$user = $db->like('title', $this->request->getVar('search'));
$user = $db->or_like('name', $this->request->getVar('search'));
$query = $user->get();