feat: 프로젝트 대시보드 스크럼 칸반 스타일 개선

- 오늘의 활동을 3컬럼 칸반 레이아웃으로 변경 (예정/진행중/완료)
- 담당자별 항목 그룹핑 적용
- 인라인 상태 변경 버튼 추가 (hover 시 표시)
- 담당자별 다중 항목 편집 모달 구현
  - 담당자 이름 공통 입력
  - 항목별 textarea, 상태 버튼, 삭제 버튼
  - 항목 추가/삭제 기능
  - Promise.all로 일괄 저장
- 인라인 삭제 기능 추가
- 라우트 경로 수정 (pm.daily-logs.index → daily-logs.index)
This commit is contained in:
2025-12-02 14:07:50 +09:00
parent afccada30b
commit af5ecf3c4c
6 changed files with 799 additions and 0 deletions

View File

@@ -359,6 +359,7 @@
// 항목 개별 API (로그 ID 없이 직접 접근)
Route::prefix('daily-logs/entries')->name('daily-logs.entries.')->group(function () {
Route::put('/{entryId}', [DailyLogController::class, 'updateEntry'])->name('update');
Route::put('/{entryId}/status', [DailyLogController::class, 'updateEntryStatus'])->name('updateStatus');
Route::delete('/{entryId}', [DailyLogController::class, 'deleteEntry'])->name('delete');
});