header('HX-Request')) { return response('', 200)->header('HX-Redirect', route('hr.leaves.index')); } $employees = $this->leaveService->getActiveEmployees(); $departments = $this->leaveService->getDepartments(); $typeMap = Leave::TYPE_MAP; $statusMap = Leave::STATUS_MAP; return view('hr.leaves.index', [ 'employees' => $employees, 'departments' => $departments, 'typeMap' => $typeMap, 'statusMap' => $statusMap, ]); } /** * 휴가관리 가이드 도움말 모달 */ public function helpGuide(): View { $guidePath = resource_path('markdown/휴가관리가이드.md'); if (file_exists($guidePath)) { $markdown = file_get_contents($guidePath); $htmlContent = Str::markdown($markdown); } else { $htmlContent = '
가이드를 찾을 수 없습니다.
'; } return view('hr.leaves.partials.help-modal', compact('htmlContent')); } }