'date', 'issue_date' => 'date', ]; } /** * 사업자번호 포맷팅 (XXX-XX-XXXXX) */ public function getFormattedBizNoAttribute(): string { $no = preg_replace('/[^0-9]/', '', $this->biz_no); if (strlen($no) === 10) { return substr($no, 0, 3).'-'.substr($no, 3, 2).'-'.substr($no, 5, 5); } return $this->biz_no; } }