feat: [pm] 이슈 일정 UI 및 정렬 기능 추가
- 이슈 모달에 시작일/마감일/예상시간 입력 필드 추가 - 작업 탭 아코디언 서브 이슈에 마감일 표시 및 지연 강조 - 이슈 정렬: 마감일 → 상태 순 (이슈탭 + 작업탭 아코디언)
This commit is contained in:
@@ -37,6 +37,9 @@ class AdminPmIssue extends Model
|
||||
'description',
|
||||
'type',
|
||||
'status',
|
||||
'start_date',
|
||||
'due_date',
|
||||
'estimated_hours',
|
||||
'is_urgent',
|
||||
'created_by',
|
||||
'updated_by',
|
||||
@@ -46,6 +49,9 @@ class AdminPmIssue extends Model
|
||||
protected $casts = [
|
||||
'project_id' => 'integer',
|
||||
'task_id' => 'integer',
|
||||
'start_date' => 'date',
|
||||
'due_date' => 'date',
|
||||
'estimated_hours' => 'integer',
|
||||
'is_urgent' => 'boolean',
|
||||
'created_by' => 'integer',
|
||||
'updated_by' => 'integer',
|
||||
|
||||
Reference in New Issue
Block a user