diff --git a/app/Models/Cloudflare/AuditLogModel.php b/app/Models/Cloudflare/AuditLogModel.php index 67753f2..3aa13ff 100644 --- a/app/Models/Cloudflare/AuditLogModel.php +++ b/app/Models/Cloudflare/AuditLogModel.php @@ -85,12 +85,11 @@ class AuditLogModel extends CommonModel { return $this->modify_process($entity, $formDatas); } - //List 검색용 - public function setList_WordFilter(string $word, $field = null): void - { - parent::setList_WordFilter($word, $field); - $this->orLike(self::TABLE . '.zone_name', $word, 'both'); - $this->orLike(self::TABLE . '.resource_name', $word, 'both'); - } + //List 검색용 + public function setList_WordFilter(string $word, $field = null): void + { + parent::setList_WordFilter($word, $field); + $this->orLike(self::TABLE . '.zone_name', $word, 'both'); + $this->orLike(self::TABLE . '.resource_name', $word, 'both'); } }