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, ]