[input_key1, input_key2]]. * * @var array */ public $relations = []; public function search($query) { return $this->where('name', 'LIKE', '%' . $query . '%')->orWhere('email', 'LIKE', '%' . $query . '%'); } public function role($id) { return $this->related('roles', 'role_id', $id); } }