From c227c4fdb3f3a8cf1c7c3ae19acbd958403a26de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Tue, 13 Jan 2026 10:42:08 +0900 Subject: [PATCH] dbmsv4 init...4 --- app/Cells/SearchCell.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Cells/SearchCell.php b/app/Cells/SearchCell.php index d0f35ff..126a2c9 100644 --- a/app/Cells/SearchCell.php +++ b/app/Cells/SearchCell.php @@ -17,12 +17,11 @@ class SearchCell extends CommonCell { $options = ["" => "고객명 선택"]; foreach ($this->getService()->getEntities() as $entity) { - $options[$entity->getPK()] = $entity->getTitle(); + $options[$entity->getPK()] = $entity->getSite() . "/" . $entity->getTitle(); } $template = array_key_exists('template', $params) ? $params['template'] : __FUNCTION__; return view('cells/search/' . $template, [ 'searchCellDatas' => [ - 'service' => $this->getService(), 'options' => $options, 'selected' => null, ]