feat: [hr] 사원 등록/수정 폼에 고용형태 선택 추가

- Employee 모델에 EMPLOYMENT_TYPES 상수 정의 (정규직/계약직/일용직/프리랜서)
- create/edit 뷰에 고용형태 select 드롭다운 추가
This commit is contained in:
김보곤
2026-02-27 16:00:19 +09:00
parent 2a29d966f5
commit 6fd59b4b44
3 changed files with 27 additions and 0 deletions

View File

@@ -13,6 +13,13 @@ class Employee extends Model
{
use ModelTrait;
const EMPLOYMENT_TYPES = [
'regular' => '정규직',
'contract' => '계약직',
'daily' => '일용직',
'freelancer' => '프리랜서',
];
protected $table = 'tenant_user_profiles';
protected $fillable = [