feat: [hr] 사원 등록/수정 폼에 고용형태 선택 추가
- Employee 모델에 EMPLOYMENT_TYPES 상수 정의 (정규직/계약직/일용직/프리랜서) - create/edit 뷰에 고용형태 select 드롭다운 추가
This commit is contained in:
@@ -13,6 +13,13 @@ class Employee extends Model
|
||||
{
|
||||
use ModelTrait;
|
||||
|
||||
const EMPLOYMENT_TYPES = [
|
||||
'regular' => '정규직',
|
||||
'contract' => '계약직',
|
||||
'daily' => '일용직',
|
||||
'freelancer' => '프리랜서',
|
||||
];
|
||||
|
||||
protected $table = 'tenant_user_profiles';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
Reference in New Issue
Block a user