feat: [juil] 건설PMIS 페이지 및 업무 Flow 모달 추가

- 건설PMIS 메뉴 페이지 생성 (construction-pmis.blade.php)
- 업무 Flow 보기 버튼 → 모달창 4개 탭 구현
- KCC KOUP 업무 Flow 이미지 4장 포함
- PlanningController에 constructionPmis 메서드 추가
This commit is contained in:
김보곤
2026-03-12 10:47:33 +09:00
parent 57ff8d14d6
commit fe34c2d99a
3 changed files with 147 additions and 0 deletions

View File

@@ -35,4 +35,13 @@ public function workflow(Request $request): View|Response
return view('juil.workflow');
}
public function constructionPmis(Request $request): View|Response
{
if ($request->header('HX-Request')) {
return response('', 200)->header('HX-Redirect', route('juil.construction-pmis'));
}
return view('juil.construction-pmis');
}
}